diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-02-25 20:33:38 +0100 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-02-25 20:40:02 +0100 |
commit | c919f7408db0240017ad14db213c873d1ae68a6b (patch) | |
tree | 699e22df10223c7397247f2ad03245e0ffd668c6 /target/linux/bmips/dts/bcm6358.dtsi | |
parent | 5c223fb43f28f23d66421b627adb1975dd762ec3 (diff) | |
download | upstream-c919f7408db0240017ad14db213c873d1ae68a6b.tar.gz upstream-c919f7408db0240017ad14db213c873d1ae68a6b.tar.bz2 upstream-c919f7408db0240017ad14db213c873d1ae68a6b.zip |
bmips: dts: fix syscon-reboot nodes
Using regmap with phandles is deprecated.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/bmips/dts/bcm6358.dtsi')
-rw-r--r-- | target/linux/bmips/dts/bcm6358.dtsi | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/target/linux/bmips/dts/bcm6358.dtsi b/target/linux/bmips/dts/bcm6358.dtsi index 8e2c9fa0ee..b396d9335b 100644 --- a/target/linux/bmips/dts/bcm6358.dtsi +++ b/target/linux/bmips/dts/bcm6358.dtsi @@ -92,16 +92,15 @@ }; pll_cntl: syscon@fffe0008 { - compatible = "syscon"; + compatible = "syscon", "simple-mfd"; reg = <0xfffe0008 0x4>; native-endian; - }; - syscon-reboot { - compatible = "syscon-reboot"; - regmap = <&pll_cntl>; - offset = <0x0>; - mask = <0x1>; + syscon-reboot { + compatible = "syscon-reboot"; + offset = <0x0>; + mask = <0x1>; + }; }; periph_intc: interrupt-controller@fffe000c { |