diff mbox series

ARM: dts: am437x-idk-evm: Fix incorrect OPP node names

Message ID 20200210210423.22424-1-s-anna@ti.com (mailing list archive)
State New, archived
Headers show
Series ARM: dts: am437x-idk-evm: Fix incorrect OPP node names | expand

Commit Message

Suman Anna Feb. 10, 2020, 9:04 p.m. UTC
The commit 337c6c9a69af ("ARM: dts: am437x-idk-evm: Disable
OPP50 for MPU") adjusts couple of OPP nodes defined in the
common am4372.dtsi file, but used outdated node names. This
results in these getting treated as new OPP nodes with missing
properties.

Fix this properly by using the correct node names as updated in
commit b9cb2ba71848 ("ARM: dts: Use - instead of @ for DT OPP
entries for TI SoCs").

Reported-by: Roger Quadros <rogerq@ti.com>
Fixes: 337c6c9a69af ("ARM: dts: am437x-idk-evm: Disable OPP50 for MPU")
Signed-off-by: Suman Anna <s-anna@ti.com>
---
 arch/arm/boot/dts/am437x-idk-evm.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tony Lindgren Feb. 20, 2020, 5:51 p.m. UTC | #1
* Suman Anna <s-anna@ti.com> [200210 13:05]:
> The commit 337c6c9a69af ("ARM: dts: am437x-idk-evm: Disable
> OPP50 for MPU") adjusts couple of OPP nodes defined in the
> common am4372.dtsi file, but used outdated node names. This
> results in these getting treated as new OPP nodes with missing
> properties.
> 
> Fix this properly by using the correct node names as updated in
> commit b9cb2ba71848 ("ARM: dts: Use - instead of @ for DT OPP
> entries for TI SoCs").

Applying into fixes thanks.

Tony
diff mbox series

Patch

diff --git a/arch/arm/boot/dts/am437x-idk-evm.dts b/arch/arm/boot/dts/am437x-idk-evm.dts
index f3ced6df0c9b..9f66f96d09c9 100644
--- a/arch/arm/boot/dts/am437x-idk-evm.dts
+++ b/arch/arm/boot/dts/am437x-idk-evm.dts
@@ -526,11 +526,11 @@ 
 	 * Supply voltage supervisor on board will not allow opp50 so
 	 * disable it and set opp100 as suspend OPP.
 	 */
-	opp50@300000000 {
+	opp50-300000000 {
 		status = "disabled";
 	};
 
-	opp100@600000000 {
+	opp100-600000000 {
 		opp-suspend;
 	};
 };