Message ID | 20220608175728.1012550-1-niklas.soderlund+renesas@ragnatech.se (mailing list archive) |
---|---|
State | Mainlined |
Commit | 86aefa0d8dfa6dd488e2810461f714dd2794b0ee |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | arm64: dts: renesas: Add missing space after remote-endpoint | expand |
Hi Niklas, On Wed, Jun 8, 2022 at 7:58 PM Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> wrote: > Add the missing space after remote-endpoint in r8a774c0.dtsi and > r8a77990.dtsi before the typo spreads to other files. > > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Thanks! Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> i.e. will queue in renesas-devel for v5.20. Do you plan to fix the other in-tree offenders, too? 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
Hi Geert, On 2022-06-09 10:13:49 +0200, Geert Uytterhoeven wrote: > Hi Niklas, > > On Wed, Jun 8, 2022 at 7:58 PM Niklas Söderlund > <niklas.soderlund+renesas@ragnatech.se> wrote: > > Add the missing space after remote-endpoint in r8a774c0.dtsi and > > r8a77990.dtsi before the typo spreads to other files. > > > > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > > Thanks! > > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> > i.e. will queue in renesas-devel for v5.20. Thanks! > > Do you plan to fix the other in-tree offenders, too? I was plain too, seems like a perfect opportunity to force myself to try and learn Coccinelle :-) > > 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
Hi Niklas, On Thu, Jun 9, 2022 at 10:40 AM Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> wrote: > On 2022-06-09 10:13:49 +0200, Geert Uytterhoeven wrote: > > On Wed, Jun 8, 2022 at 7:58 PM Niklas Söderlund > > <niklas.soderlund+renesas@ragnatech.se> wrote: > > > Add the missing space after remote-endpoint in r8a774c0.dtsi and > > > r8a77990.dtsi before the typo spreads to other files. > > > > > > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > > Do you plan to fix the other in-tree offenders, too? > > I was plain too, seems like a perfect opportunity to force myself to try > and learn Coccinelle :-) Very smart! I would chicken-out, saying the number of offenders is too small ;-) 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/r8a774c0.dtsi b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi index b6aeb22e88364587..90588bbff7e0b8e8 100644 --- a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi +++ b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi @@ -1281,7 +1281,7 @@ port@1 { vin4csi40: endpoint@2 { reg = <2>; - remote-endpoint= <&csi40vin4>; + remote-endpoint = <&csi40vin4>; }; }; }; @@ -1309,7 +1309,7 @@ port@1 { vin5csi40: endpoint@2 { reg = <2>; - remote-endpoint= <&csi40vin5>; + remote-endpoint = <&csi40vin5>; }; }; }; diff --git a/arch/arm64/boot/dts/renesas/r8a77990.dtsi b/arch/arm64/boot/dts/renesas/r8a77990.dtsi index d3302120263762f1..4c7c7feed7026778 100644 --- a/arch/arm64/boot/dts/renesas/r8a77990.dtsi +++ b/arch/arm64/boot/dts/renesas/r8a77990.dtsi @@ -1324,7 +1324,7 @@ port@1 { vin4csi40: endpoint@2 { reg = <2>; - remote-endpoint= <&csi40vin4>; + remote-endpoint = <&csi40vin4>; }; }; }; @@ -1352,7 +1352,7 @@ port@1 { vin5csi40: endpoint@2 { reg = <2>; - remote-endpoint= <&csi40vin5>; + remote-endpoint = <&csi40vin5>; }; }; };
Add the missing space after remote-endpoint in r8a774c0.dtsi and r8a77990.dtsi before the typo spreads to other files. Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> --- arch/arm64/boot/dts/renesas/r8a774c0.dtsi | 4 ++-- arch/arm64/boot/dts/renesas/r8a77990.dtsi | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)