From: Nishanth Menon <nm@ti.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: "David Lechner" <david@lechnology.com>,
"Bartosz Golaszewski" <brgl@bgdev.pl>,
"Rob Herring" <robh+dt@kernel.org>,
"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Santosh Shilimkar" <ssantosh@kernel.org>,
"Benoît Cousson" <bcousson@baylibre.com>,
"Tony Lindgren" <tony@atomide.com>,
"Vignesh Raghavendra" <vigneshr@ti.com>,
"Tero Kristo" <kristo@kernel.org>,
linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH 1/2] ARM: dts: ti: add missing space before {
Date: Tue, 11 Jul 2023 08:50:44 -0500 [thread overview]
Message-ID: <20230711135044.5m3juyupjuha5up5@handwork> (raw)
In-Reply-To: <20230705145755.292927-1-krzysztof.kozlowski@linaro.org>
On 16:57-20230705, Krzysztof Kozlowski wrote:
> Add missing whitespace between node name/label and opening {.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts | 2 +-
> arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi | 2 +-
> arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts | 8 ++++----
Tony: Could you pick this up?
Reviewed-by: Nishanth Menon <nm@ti.com>
> 3 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> index afd04a423856..17a1632a8ac1 100644
> --- a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> +++ b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> @@ -391,7 +391,7 @@ &spi1 {
> pinctrl-names = "default";
> cs-gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
>
> - display@0{
> + display@0 {
> compatible = "lego,ev3-lcd";
> reg = <0>;
> spi-max-frequency = <10000000>;
> diff --git a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> index 8949578e62e8..2062fe561642 100644
> --- a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> +++ b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> @@ -137,7 +137,7 @@ uart01_spi2_pins: uart01-spi2-pins {
> >;
> };
>
> - dfesync_rp1_pins: dfesync-rp1-pins{
> + dfesync_rp1_pins: dfesync-rp1-pins {
> pinctrl-single,bits = <
> /* DFESYNC_RP1_SEL */
> 0x0 0x0 0x2
> diff --git a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> index 863552393c07..edaddc7b6a5e 100644
> --- a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> +++ b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> @@ -58,7 +58,7 @@ vdd_core: fixed-regulator-vdd_core {
> vin-supply = <&vdd_corereg>;
> };
>
> - v1_8dreg: fixed-regulator-v1_8dreg{
> + v1_8dreg: fixed-regulator-v1_8dreg {
> compatible = "regulator-fixed";
> regulator-name = "V1_8DREG";
> regulator-min-microvolt = <1800000>;
> @@ -68,7 +68,7 @@ v1_8dreg: fixed-regulator-v1_8dreg{
> vin-supply = <&v24_0d>;
> };
>
> - v1_8d: fixed-regulator-v1_8d{
> + v1_8d: fixed-regulator-v1_8d {
> compatible = "regulator-fixed";
> regulator-name = "V1_8D";
> regulator-min-microvolt = <1800000>;
> @@ -78,7 +78,7 @@ v1_8d: fixed-regulator-v1_8d{
> vin-supply = <&v1_8dreg>;
> };
>
> - v1_5dreg: fixed-regulator-v1_5dreg{
> + v1_5dreg: fixed-regulator-v1_5dreg {
> compatible = "regulator-fixed";
> regulator-name = "V1_5DREG";
> regulator-min-microvolt = <1500000>;
> @@ -88,7 +88,7 @@ v1_5dreg: fixed-regulator-v1_5dreg{
> vin-supply = <&v24_0d>;
> };
>
> - v1_5d: fixed-regulator-v1_5d{
> + v1_5d: fixed-regulator-v1_5d {
> compatible = "regulator-fixed";
> regulator-name = "V1_5D";
> regulator-min-microvolt = <1500000>;
> --
> 2.34.1
>
--
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-07-11 13:52 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
2023-07-05 16:23 ` David Lechner
2023-07-05 16:22 ` [PATCH 1/2] ARM: " David Lechner
2023-07-11 13:47 ` (subset) " Nishanth Menon
2023-07-11 13:50 ` Nishanth Menon [this message]
2023-07-31 6:15 ` Tony Lindgren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230711135044.5m3juyupjuha5up5@handwork \
--to=nm@ti.com \
--cc=bcousson@baylibre.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=david@lechnology.com \
--cc=devicetree@vger.kernel.org \
--cc=kristo@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=ssantosh@kernel.org \
--cc=tony@atomide.com \
--cc=vigneshr@ti.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox