Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

+5 -11
+2 -5
arch/arm/boot/dts/r8a73a4-ape6evm.dts
··· 157 157 158 158 &cpu0 { 159 159 cpu0-supply = <&vdd_dvfs>; 160 - operating-points = < 161 - /* kHz uV */ 162 - 1950000 1115000 163 - 1462500 995000 164 - >; 160 + operating-points = <1950000 1115000>, /* kHz uV */ 161 + <1462500 995000>; 165 162 voltage-tolerance = <1>; /* 1% */ 166 163 }; 167 164
+3 -6
arch/arm/boot/dts/sh73a0-kzm9g.dts
··· 25 25 cpus { 26 26 cpu@0 { 27 27 cpu0-supply = <&vdd_dvfs>; 28 - operating-points = < 29 - /* kHz uV */ 30 - 1196000 1315000 31 - 598000 1175000 32 - 398667 1065000 33 - >; 28 + operating-points = <1196000 1315000>, /* kHz uV */ 29 + < 598000 1175000>, 30 + < 398667 1065000>; 34 31 voltage-tolerance = <1>; /* 1% */ 35 32 }; 36 33 };