diff options
author | Arnd Bergmann <[email protected]> | 2023-06-22 10:14:02 +0200 |
---|---|---|
committer | Arnd Bergmann <[email protected]> | 2023-06-22 10:38:50 +0200 |
commit | 46448b36ff8c807194d5884a6efce00891e4bd02 (patch) | |
tree | a09ab12a149360918d7b0962284cc0b1a848697d | |
parent | a4bd03e7cb78ff743d811a09273b40d31e861def (diff) |
ARM: mvebu: fix unit address on armada-390-db flash
The unit address needs to be changed to match the reg property:
arch/arm/boot/dts/marvell/armada-390-db.dts:84.10-106.4: Warning (spi_bus_reg): /soc/spi@10680/flash@1: SPI bus unit address format error, expected "0"
Reported-by: Stephen Rothwell <[email protected]>
Reviewed-by: Krzysztof Kozlowski <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/marvell/armada-390-db.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/marvell/armada-390-db.dts b/arch/arm/boot/dts/marvell/armada-390-db.dts index 792d0a0184e8..20f518dbac97 100644 --- a/arch/arm/boot/dts/marvell/armada-390-db.dts +++ b/arch/arm/boot/dts/marvell/armada-390-db.dts @@ -81,7 +81,7 @@ pinctrl-0 = <&spi1_pins>; pinctrl-names = "default"; - flash@1 { + flash@0 { #address-cells = <1>; #size-cells = <1>; compatible = "n25q128a13", |