mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
d745835ae1
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From 6cf9f70255b90b540b9cbde062f18fea29024a75 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
|
Date: Thu, 19 Aug 2021 14:26:06 +0200
|
|
Subject: [PATCH] arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
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>
|
|
---
|
|
arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi | 12 ++++++------
|
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
--- 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>;
|
|
};
|
|
};
|