Skip to content

Commit 4ef5d76

Browse files
committed
ARM: dts: Fix gpio0 flags for am335x-icev2
The ti,no-idle-on-init and ti,no-reset-on-init flags need to be at the interconnect target module level for the modules that have it defined. Otherwise we get the following warnings: dts flag should be at module level for ti,no-idle-on-init dts flag should be at module level for ti,no-reset-on-init Fixes: 87fc89c ("ARM: dts: am335x: Move l4 child devices to probe them with ti-sysc") Cc: Lokesh Vutla <[email protected]> Reported-by: Suman Anna <[email protected]> Reviewed-by: Lokesh Vutla <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
1 parent 1d70ded commit 4ef5d76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/arm/boot/dts/am335x-icev2.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@
432432
pinctrl-0 = <&mmc0_pins_default>;
433433
};
434434

435-
&gpio0 {
435+
&gpio0_target {
436436
/* Do not idle the GPIO used for holding the VTT regulator */
437437
ti,no-reset-on-init;
438438
ti,no-idle-on-init;

arch/arm/boot/dts/am33xx-l4.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
ranges = <0x0 0x5000 0x1000>;
128128
};
129129

130-
target-module@7000 { /* 0x44e07000, ap 14 20.0 */
130+
gpio0_target: target-module@7000 { /* 0x44e07000, ap 14 20.0 */
131131
compatible = "ti,sysc-omap2", "ti,sysc";
132132
ti,hwmods = "gpio1";
133133
reg = <0x7000 0x4>,

0 commit comments

Comments
 (0)