diff options
author | Marek Vasut <marex@denx.de> | 2022-11-02 22:31:02 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-11-11 09:17:11 +0300 |
commit | 0c068a364a13e55e4b91ad772a25b683e2f141cb (patch) | |
tree | ae278a236bb5bb9a1f1e393e08959affcfcd5691 /arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi | |
parent | 12bd480018a1883fdaf74c7b8ee66fbfed03a092 (diff) | |
download | linux-0c068a364a13e55e4b91ad772a25b683e2f141cb.tar.xz |
arm64: dts: imx8mm: imx8mn: imx8mp: imx8mq: Replace opp-xM with opp-x000000
Fix the following dtbs_check warning on all of i.MX8M variants:
"
opp-table: Unevaluated properties are not allowed ('opp-25M', 'opp-100M', 'opp-750M' were unexpected)
"
Using the following command:
"
$ sed -i '/opp-[0-9]\+M/ s@M {@000000 {@' arch/arm64/boot/dts/freescale/imx8m*
"
The Documentation/devicetree/bindings/opp/opp-v2-base.yaml expects the OPP
subnode names to be full frequency listings in Hz without unit suffixes.
Only the i.MX8M DTs are affected per "git grep 'opp-[0-9]\+M'", so fix them.
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi index 8d10f5b41297..5172883717d1 100644 --- a/arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi @@ -47,11 +47,11 @@ ddrc_opp_table: opp-table { compatible = "operating-points-v2"; - opp-100M { + opp-100000000 { opp-hz = /bits/ 64 <100000000>; }; - opp-750M { + opp-750000000 { opp-hz = /bits/ 64 <750000000>; }; }; |