diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2022-03-15 22:53:04 +0100 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-03-16 20:48:01 +0100 |
commit | dadedd5580c53752c0f308ac2861bb07c7f88801 (patch) | |
tree | aa31948e92362599f090100edc92b53a20c7cefb /target/linux/lantiq | |
parent | 621b0589fb5cc1cbab826deb1614009fb60ad995 (diff) | |
download | upstream-dadedd5580c53752c0f308ac2861bb07c7f88801.tar.gz upstream-dadedd5580c53752c0f308ac2861bb07c7f88801.tar.bz2 upstream-dadedd5580c53752c0f308ac2861bb07c7f88801.zip |
lantiq: fritz7362sl: fix SPI flash node reg property
The &spi node has #address-cells = <1> and #size-cells = <0>. Drop the
extra 0 in the reg property from the SPI flash node to ensure it's
number of cells matches the definition in the parent node. This also
makes the reg property for the SPI flash node consistent with all other
VR9 boards.
Fixes: eae6cac6a30b ("lantiq: add support for AVM FRITZ!Box 7362 SL")
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r-- | target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz7362sl.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz7362sl.dts b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz7362sl.dts index 4d86bf5542..37fee61588 100644 --- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz7362sl.dts +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz7362sl.dts @@ -22,7 +22,7 @@ #address-cells = <1>; #size-cells = <1>; compatible = "jedec,spi-nor"; - reg = <4 0>; + reg = <4>; spi-max-frequency = <1000000>; urlader: partition@0 { |