diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2021-08-19 14:26:06 +0200 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2021-09-14 14:36:36 -0700 |
commit | 6cf9f70255b90b540b9cbde062f18fea29024a75 (patch) | |
tree | 2c2272ca923cc3be17efed7c5b3dd44e2a6539f8 | |
parent | d0ae9c944b9472c5691a482297df7a57d7fd1199 (diff) |
arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus
This fixes following error for every bcm4908 DTS file:
bus@ff800000: reboot: {'type': 'object'} is not allowed for {'compatible': ['syscon-reboot'], 'regmap': [[15]], 'offset': [[52]], 'mask': [[1]]}
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
-rw-r--r-- | arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi b/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi index ae91679a78b1..87076770f4bc 100644 --- a/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi +++ b/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi @@ -326,12 +326,12 @@ #reset-cells = <1>; }; }; + }; - reboot { - compatible = "syscon-reboot"; - regmap = <&timer>; - offset = <0x34>; - mask = <1>; - }; + reboot { + compatible = "syscon-reboot"; + regmap = <&timer>; + offset = <0x34>; + mask = <1>; }; }; |