Skip to content

Commit 4a23041

Browse files
tmlindgregkh
authored andcommitted
ARM: dts: Fix am335x and dm814x scm syscon to probe children
[ Upstream commit 1aa09df0854efe16b7a80358a18f0a0bebafd246 ] Without these changes children of the scn syscon won't probe. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 84a97ea commit 4a23041

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

arch/arm/boot/dts/am33xx.dtsi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,11 @@
142142
};
143143

144144
scm_conf: scm_conf@0 {
145-
compatible = "syscon";
145+
compatible = "syscon", "simple-bus";
146146
reg = <0x0 0x800>;
147147
#address-cells = <1>;
148148
#size-cells = <1>;
149+
ranges = <0 0 0x800>;
149150

150151
scm_clocks: clocks {
151152
#address-cells = <1>;

arch/arm/boot/dts/dm814x.dtsi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,11 @@
189189
ranges = <0 0x160000 0x16d000>;
190190

191191
scm_conf: scm_conf@0 {
192-
compatible = "syscon";
192+
compatible = "syscon", "simple-bus";
193193
reg = <0x0 0x800>;
194194
#address-cells = <1>;
195195
#size-cells = <1>;
196+
ranges = <0 0 0x800>;
196197

197198
scm_clocks: clocks {
198199
#address-cells = <1>;

0 commit comments

Comments
 (0)