Message ID | 20220526204231.832090-1-krzysztof.kozlowski@linaro.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | 76f9a56152026c91adc33a6c1e49e8f5c0b80720 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | arm64: dts: renesas: adjust whitespace around '=' | expand |
Hi Krzysztof, On Thu, May 26, 2022 at 10:42 PM Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote: > Fix whitespace coding style: use single space instead of tabs or > multiple spaces around '=' sign in property assignment. No functional > changes (same DTB). > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Thanks for your patch! > --- a/arch/arm64/boot/dts/renesas/draak.dtsi > +++ b/arch/arm64/boot/dts/renesas/draak.dtsi > @@ -630,7 +630,7 @@ rsnd_for_ak4613: endpoint { > bitclock-master = <&rsnd_for_ak4613>; > frame-master = <&rsnd_for_ak4613>; > playback = <&ssi3>, <&src5>, <&dvc0>; > - capture = <&ssi4>, <&src6>, <&dvc1>; > + capture = <&ssi4>, <&src6>, <&dvc1>; I think the idea was to align the playback and capture properties, for easier comparison. Hence I'm a bit undecided if this needs to be fixed or not... > }; > }; > }; > --- a/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi > +++ b/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi > @@ -206,12 +206,12 @@ pcm3168a: audio-codec@44 { > clocks = <&clksndsel>; > clock-names = "scki"; > > - VDD1-supply = <&snd_3p3v>; > - VDD2-supply = <&snd_3p3v>; > - VCCAD1-supply = <&snd_vcc5v>; > - VCCAD2-supply = <&snd_vcc5v>; > - VCCDA1-supply = <&snd_vcc5v>; > - VCCDA2-supply = <&snd_vcc5v>; > + VDD1-supply = <&snd_3p3v>; > + VDD2-supply = <&snd_3p3v>; > + VCCAD1-supply = <&snd_vcc5v>; > + VCCAD2-supply = <&snd_vcc5v>; > + VCCDA1-supply = <&snd_vcc5v>; > + VCCDA2-supply = <&snd_vcc5v>; Same for the various supplies. > > ports { > #address-cells = <1>; > @@ -438,7 +438,7 @@ rsnd_for_pcm3168a_capture: endpoint { > bitclock-master; > frame-master; > dai-tdm-slot-num = <6>; > - capture = <&ssi4>; > + capture = <&ssi4>; Right, there's nothing to align here. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
On 26/05/2022 23:05, Geert Uytterhoeven wrote: > Hi Krzysztof, > > On Thu, May 26, 2022 at 10:42 PM Krzysztof Kozlowski > <krzysztof.kozlowski@linaro.org> wrote: >> Fix whitespace coding style: use single space instead of tabs or >> multiple spaces around '=' sign in property assignment. No functional >> changes (same DTB). >> >> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> > > Thanks for your patch! > >> --- a/arch/arm64/boot/dts/renesas/draak.dtsi >> +++ b/arch/arm64/boot/dts/renesas/draak.dtsi >> @@ -630,7 +630,7 @@ rsnd_for_ak4613: endpoint { >> bitclock-master = <&rsnd_for_ak4613>; >> frame-master = <&rsnd_for_ak4613>; >> playback = <&ssi3>, <&src5>, <&dvc0>; >> - capture = <&ssi4>, <&src6>, <&dvc1>; >> + capture = <&ssi4>, <&src6>, <&dvc1>; > > I think the idea was to align the playback and capture properties, > for easier comparison. > Hence I'm a bit undecided if this needs to be fixed or not... yeah, but then one should align "frame-master" to "bitclock-master" and several other properties. > >> }; >> }; >> }; > >> --- a/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi >> +++ b/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi >> @@ -206,12 +206,12 @@ pcm3168a: audio-codec@44 { >> clocks = <&clksndsel>; >> clock-names = "scki"; like here ^^^ - clocks with clock-names... >> >> - VDD1-supply = <&snd_3p3v>; >> - VDD2-supply = <&snd_3p3v>; >> - VCCAD1-supply = <&snd_vcc5v>; >> - VCCAD2-supply = <&snd_vcc5v>; >> - VCCDA1-supply = <&snd_vcc5v>; >> - VCCDA2-supply = <&snd_vcc5v>; >> + VDD1-supply = <&snd_3p3v>; >> + VDD2-supply = <&snd_3p3v>; >> + VCCAD1-supply = <&snd_vcc5v>; >> + VCCAD2-supply = <&snd_vcc5v>; >> + VCCDA1-supply = <&snd_vcc5v>; >> + VCCDA2-supply = <&snd_vcc5v>; > > Same for the various supplies. I don't think there is benefit to order few single entries, while entire file does not follow that convention. It would be different for some multiple-line entries, but that's not the case here. Anyway that's only my opinion, so I am happy to trim the patch to the last part (although then it is a bit churn :) ). > >> >> ports { >> #address-cells = <1>; >> @@ -438,7 +438,7 @@ rsnd_for_pcm3168a_capture: endpoint { >> bitclock-master; >> frame-master; >> dai-tdm-slot-num = <6>; >> - capture = <&ssi4>; >> + capture = <&ssi4>; > > Right, there's nothing to align here. Best regards, Krzysztof
On Thu, May 26, 2022 at 10:42 PM Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote: > Fix whitespace coding style: use single space instead of tabs or > multiple spaces around '=' sign in property assignment. No functional > changes (same DTB). > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> i.e. will queue in renesas-devel for v5.20. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds
diff --git a/arch/arm64/boot/dts/renesas/draak.dtsi b/arch/arm64/boot/dts/renesas/draak.dtsi index 7231f820d601..ef3bb835d5c0 100644 --- a/arch/arm64/boot/dts/renesas/draak.dtsi +++ b/arch/arm64/boot/dts/renesas/draak.dtsi @@ -630,7 +630,7 @@ rsnd_for_ak4613: endpoint { bitclock-master = <&rsnd_for_ak4613>; frame-master = <&rsnd_for_ak4613>; playback = <&ssi3>, <&src5>, <&dvc0>; - capture = <&ssi4>, <&src6>, <&dvc1>; + capture = <&ssi4>, <&src6>, <&dvc1>; }; }; }; diff --git a/arch/arm64/boot/dts/renesas/ebisu.dtsi b/arch/arm64/boot/dts/renesas/ebisu.dtsi index 72f359efa23e..aef0896b2f5f 100644 --- a/arch/arm64/boot/dts/renesas/ebisu.dtsi +++ b/arch/arm64/boot/dts/renesas/ebisu.dtsi @@ -711,7 +711,7 @@ &rcar_sound { rcar_sound,dai { dai0 { playback = <&ssi0>, <&src0>, <&dvc0>; - capture = <&ssi1>, <&src1>, <&dvc1>; + capture = <&ssi1>, <&src1>, <&dvc1>; }; }; diff --git a/arch/arm64/boot/dts/renesas/salvator-common.dtsi b/arch/arm64/boot/dts/renesas/salvator-common.dtsi index 31837fcd7bf0..09ff1708cfa6 100644 --- a/arch/arm64/boot/dts/renesas/salvator-common.dtsi +++ b/arch/arm64/boot/dts/renesas/salvator-common.dtsi @@ -832,7 +832,7 @@ rsnd_endpoint0: endpoint { frame-master = <&rsnd_endpoint0>; playback = <&ssi0>, <&src0>, <&dvc0>; - capture = <&ssi1>, <&src1>, <&dvc1>; + capture = <&ssi1>, <&src1>, <&dvc1>; }; }; diff --git a/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi b/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi index 5bcb84403ef6..408871c2859d 100644 --- a/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi +++ b/arch/arm64/boot/dts/renesas/ulcb-kf.dtsi @@ -206,12 +206,12 @@ pcm3168a: audio-codec@44 { clocks = <&clksndsel>; clock-names = "scki"; - VDD1-supply = <&snd_3p3v>; - VDD2-supply = <&snd_3p3v>; - VCCAD1-supply = <&snd_vcc5v>; - VCCAD2-supply = <&snd_vcc5v>; - VCCDA1-supply = <&snd_vcc5v>; - VCCDA2-supply = <&snd_vcc5v>; + VDD1-supply = <&snd_3p3v>; + VDD2-supply = <&snd_3p3v>; + VCCAD1-supply = <&snd_vcc5v>; + VCCAD2-supply = <&snd_vcc5v>; + VCCDA1-supply = <&snd_vcc5v>; + VCCDA2-supply = <&snd_vcc5v>; ports { #address-cells = <1>; @@ -438,7 +438,7 @@ rsnd_for_pcm3168a_capture: endpoint { bitclock-master; frame-master; dai-tdm-slot-num = <6>; - capture = <&ssi4>; + capture = <&ssi4>; }; }; }; diff --git a/arch/arm64/boot/dts/renesas/ulcb.dtsi b/arch/arm64/boot/dts/renesas/ulcb.dtsi index 90a4c0629d24..5f390865a4cd 100644 --- a/arch/arm64/boot/dts/renesas/ulcb.dtsi +++ b/arch/arm64/boot/dts/renesas/ulcb.dtsi @@ -411,7 +411,7 @@ rsnd_for_ak4613: endpoint { bitclock-master; frame-master; playback = <&ssi0>, <&src0>, <&dvc0>; - capture = <&ssi1>, <&src1>, <&dvc1>; + capture = <&ssi1>, <&src1>, <&dvc1>; }; }; rsnd_port1: port@1 {
Fix whitespace coding style: use single space instead of tabs or multiple spaces around '=' sign in property assignment. No functional changes (same DTB). Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- Output compared with dtx_diff and fdtdump. --- arch/arm64/boot/dts/renesas/draak.dtsi | 2 +- arch/arm64/boot/dts/renesas/ebisu.dtsi | 2 +- arch/arm64/boot/dts/renesas/salvator-common.dtsi | 2 +- arch/arm64/boot/dts/renesas/ulcb-kf.dtsi | 14 +++++++------- arch/arm64/boot/dts/renesas/ulcb.dtsi | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-)