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/bcm63268.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/bcm63268.dtsi')
-rw-r--r-- | target/linux/bmips/dts/bcm63268.dtsi | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/target/linux/bmips/dts/bcm63268.dtsi b/target/linux/bmips/dts/bcm63268.dtsi index 2a0bc3cbec..5581351311 100644 --- a/target/linux/bmips/dts/bcm63268.dtsi +++ b/target/linux/bmips/dts/bcm63268.dtsi @@ -93,16 +93,15 @@ }; pll_cntl: syscon@10000008 { - compatible = "syscon"; + compatible = "syscon", "simple-mfd"; reg = <0x10000008 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_rst: reset-controller@10000010 { |