Quoting Rob Herring (2023-02-28 13:54:33) > SPI and I2C bus node names are expected to be "spi" or "i2c", > respectively, with nothing else, a unit-address, or a '-N' index. A > pattern of 'spi0' or 'i2c0' or similar has crept in. Fix all these > cases. Mostly scripted with the following commands: > > git grep -l '\si2c[0-9] {' Documentation/devicetree/ | xargs sed -i -e 's/i2c[0-9] {/i2c {/' > git grep -l '\sspi[0-9] {' Documentation/devicetree/ | xargs sed -i -e 's/spi[0-9] {/spi {/' > > With this, a few errors in examples were exposed and fixed. > > Signed-off-by: Rob Herring <robh@xxxxxxxxxx> > --- Reviewed-by: Stephen Boyd <sboyd@xxxxxxxxxx> > diff --git a/Documentation/devicetree/bindings/clock/ti,lmk04832.yaml b/Documentation/devicetree/bindings/clock/ti,lmk04832.yaml > index 73d17830f165..13d7b3d03d84 100644 > --- a/Documentation/devicetree/bindings/clock/ti,lmk04832.yaml > +++ b/Documentation/devicetree/bindings/clock/ti,lmk04832.yaml > @@ -160,7 +160,7 @@ examples: > }; > }; > > - spi0 { > + spi { > #address-cells = <1>; > #size-cells = <0>; >