diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-12-31 15:16:42 +0100 |
---|---|---|
committer | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-02-10 13:45:58 +0100 |
commit | 4e28626dbc2cac7d27f91a3171f6fd34626280b3 (patch) | |
tree | 8f986af3bac8e281b98316a8267272d273029038 /arch/arm/boot/dts/sh73a0-kzm9g.dts | |
parent | 516f68943a6ad4aadfa384e4ce3751e03e1afbda (diff) | |
download | linux-4e28626dbc2cac7d27f91a3171f6fd34626280b3.tar.bz2 |
ARM: dts: renesas: Group tuples in operating-points properties
To improve human readability and enable automatic validation, the tuples
in the "operating-points" properties of CPU nodes should be grouped.
Fix this by grouping the tuples of these properties using angle brackets
in the DTS files for all Renesas SoCs that don't already do so.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Link: https://lore.kernel.org/r/20191231141642.31609-1-geert+renesas@glider.be
Diffstat (limited to 'arch/arm/boot/dts/sh73a0-kzm9g.dts')
-rw-r--r-- | arch/arm/boot/dts/sh73a0-kzm9g.dts | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/arch/arm/boot/dts/sh73a0-kzm9g.dts b/arch/arm/boot/dts/sh73a0-kzm9g.dts index 1916f31a30ff..5a8d92a061df 100644 --- a/arch/arm/boot/dts/sh73a0-kzm9g.dts +++ b/arch/arm/boot/dts/sh73a0-kzm9g.dts @@ -25,12 +25,9 @@ cpus { cpu@0 { cpu0-supply = <&vdd_dvfs>; - operating-points = < - /* kHz uV */ - 1196000 1315000 - 598000 1175000 - 398667 1065000 - >; + operating-points = <1196000 1315000>, /* kHz uV */ + < 598000 1175000>, + < 398667 1065000>; voltage-tolerance = <1>; /* 1% */ }; }; |