diff options
author | Mathias Kresin <dev@kresin.me> | 2018-12-06 10:02:29 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-12-06 12:17:25 +0100 |
commit | ffa55386f17cff29f6c3ffbe873335511e253932 (patch) | |
tree | c4229b99bc6f6eb39df90147a5a62357ebf0a854 /target/linux/ramips/dts/DWR-512-B.dts | |
parent | 295b37d207815c196761198a2c61bfa94bee2a54 (diff) | |
download | upstream-ffa55386f17cff29f6c3ffbe873335511e253932.tar.gz upstream-ffa55386f17cff29f6c3ffbe873335511e253932.tar.bz2 upstream-ffa55386f17cff29f6c3ffbe873335511e253932.zip |
ramips: fix dtc compiler warnings
The latest dtc compiler considers nodes named i2c or spi as the
respective bus:
/pinctrl/i2c: incorrect #address-cells for I2C bus
/pinctrl/spi: incorrect #address-cells for SPI bus
Rename the node to fix the false positives.
Fix the spi node unit address for the DWR-512-B and UBNT-ER-e50 to get
rid of the following warning:
SPI bus unit address format error, expected "n"
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/ramips/dts/DWR-512-B.dts')
-rw-r--r-- | target/linux/ramips/dts/DWR-512-B.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/DWR-512-B.dts b/target/linux/ramips/dts/DWR-512-B.dts index d1dc97ff7e..d865ced704 100644 --- a/target/linux/ramips/dts/DWR-512-B.dts +++ b/target/linux/ramips/dts/DWR-512-B.dts @@ -115,7 +115,7 @@ &spi1 { status = "okay"; - spidev@1 { + spidev@0 { #address-cells = <1>; #size-cells = <1>; compatible = "siliconlabs,si3210"; |