diff options
author | Arnd Bergmann <arnd@arndb.de> | 2021-04-09 09:29:39 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2021-04-09 09:31:19 +0200 |
commit | 420c4c4619e1a0bc6aa39aa9b79377bd56adb7af (patch) | |
tree | dc6f72c7628148bcc537b4b3793df2648d95fac7 /arch/arm/boot/dts | |
parent | Merge tag 'bmc-5.13-devicetree' of git://git.kernel.org/pub/scm/linux/kernel/... (diff) | |
download | linux-420c4c4619e1a0bc6aa39aa9b79377bd56adb7af.tar.xz linux-420c4c4619e1a0bc6aa39aa9b79377bd56adb7af.zip |
ARM: dts: mvebu: fix SPI device node
dtc warns about a mismatched address:
arch/arm/boot/dts/armada-385-atl-x530.dts:171.14-199.4: Warning (spi_bus_reg): /soc/spi@10680/spi-flash@0: SPI bus unit address format error, expected "1"
I assume the "reg" property is correct here, so adjust the unit address
accordingly.
Fixes: c6dfc019c239 ("ARM: dts: mvebu: Add device tree for ATL-x530 Board")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: kernelci.org bot <bot@kernelci.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r-- | arch/arm/boot/dts/armada-385-atl-x530.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/armada-385-atl-x530.dts b/arch/arm/boot/dts/armada-385-atl-x530.dts index 2041bf09c578..ed3f41c7df71 100644 --- a/arch/arm/boot/dts/armada-385-atl-x530.dts +++ b/arch/arm/boot/dts/armada-385-atl-x530.dts @@ -168,7 +168,7 @@ pinctrl-0 = <&spi1_pins>; status = "okay"; - spi-flash@0 { + spi-flash@1 { #address-cells = <1>; #size-cells = <1>; compatible = "jedec,spi-nor"; |