linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: sm6125: Remove leading zeroes
@ 2021-09-22 19:52 Fabio Estevam
  2021-09-23 21:24 ` Martin Botka
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Fabio Estevam @ 2021-09-22 19:52 UTC (permalink / raw)
  To: bjorn.andersson
  Cc: robh+dt, linux-arm-msm, martin.botka, devicetree, Fabio Estevam

dtc complains about the leading zeroes:

arch/arm64/boot/dts/qcom/sm6125.dtsi:497.19-503.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f121000: unit name should not have leading 0s
arch/arm64/boot/dts/qcom/sm6125.dtsi:505.19-510.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f123000: unit name should not have leading 0s
arch/arm64/boot/dts/qcom/sm6125.dtsi:512.19-517.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f124000: unit name should not have leading 0

Remove them.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 arch/arm64/boot/dts/qcom/sm6125.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sm6125.dtsi b/arch/arm64/boot/dts/qcom/sm6125.dtsi
index 2b37ce6a9f9c..0c1057456597 100644
--- a/arch/arm64/boot/dts/qcom/sm6125.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm6125.dtsi
@@ -494,7 +494,7 @@ timer@f120000 {
 			reg = <0x0f120000 0x1000>;
 			clock-frequency = <19200000>;
 
-			frame@0f121000 {
+			frame@f121000 {
 				frame-number = <0>;
 				interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
 						<GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
@@ -502,14 +502,14 @@ frame@0f121000 {
 				      <0x0f122000 0x1000>;
 			};
 
-			frame@0f123000 {
+			frame@f123000 {
 				frame-number = <1>;
 				interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
 				reg = <0x0f123000 0x1000>;
 				status = "disabled";
 			};
 
-			frame@0f124000 {
+			frame@f124000 {
 				frame-number = <2>;
 				interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
 				reg = <0x0f124000 0x1000>;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] arm64: dts: sm6125: Remove leading zeroes
  2021-09-22 19:52 [PATCH] arm64: dts: sm6125: Remove leading zeroes Fabio Estevam
@ 2021-09-23 21:24 ` Martin Botka
  2021-09-24  2:23 ` (subset) " Bjorn Andersson
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Martin Botka @ 2021-09-23 21:24 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: bjorn.andersson, robh+dt, linux-arm-msm, devicetree

Reviewed-by: Martin Botka <martin.botka@somainline.org>

On Wed, Sep 22 2021 at 04:52:08 PM -0300, Fabio Estevam 
<festevam@gmail.com> wrote:
> dtc complains about the leading zeroes:
> 
> arch/arm64/boot/dts/qcom/sm6125.dtsi:497.19-503.6: Warning 
> (unit_address_format): /soc/timer@f120000/frame@0f121000: unit name 
> should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:505.19-510.6: Warning 
> (unit_address_format): /soc/timer@f120000/frame@0f123000: unit name 
> should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:512.19-517.6: Warning 
> (unit_address_format): /soc/timer@f120000/frame@0f124000: unit name 
> should not have leading 0
> 
> Remove them.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  arch/arm64/boot/dts/qcom/sm6125.dtsi | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm6125.dtsi 
> b/arch/arm64/boot/dts/qcom/sm6125.dtsi
> index 2b37ce6a9f9c..0c1057456597 100644
> --- a/arch/arm64/boot/dts/qcom/sm6125.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm6125.dtsi
> @@ -494,7 +494,7 @@ timer@f120000 {
>  			reg = <0x0f120000 0x1000>;
>  			clock-frequency = <19200000>;
> 
> -			frame@0f121000 {
> +			frame@f121000 {
>  				frame-number = <0>;
>  				interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
>  						<GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
> @@ -502,14 +502,14 @@ frame@0f121000 {
>  				      <0x0f122000 0x1000>;
>  			};
> 
> -			frame@0f123000 {
> +			frame@f123000 {
>  				frame-number = <1>;
>  				interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
>  				reg = <0x0f123000 0x1000>;
>  				status = "disabled";
>  			};
> 
> -			frame@0f124000 {
> +			frame@f124000 {
>  				frame-number = <2>;
>  				interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
>  				reg = <0x0f124000 0x1000>;
> --
> 2.25.1



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: (subset) [PATCH] arm64: dts: sm6125: Remove leading zeroes
  2021-09-22 19:52 [PATCH] arm64: dts: sm6125: Remove leading zeroes Fabio Estevam
  2021-09-23 21:24 ` Martin Botka
@ 2021-09-24  2:23 ` Bjorn Andersson
  2021-09-24  2:30 ` patchwork-bot+linux-arm-msm
  2021-10-20 13:25 ` Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2021-09-24  2:23 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: devicetree, martin.botka, robh+dt, linux-arm-msm

On Wed, 22 Sep 2021 16:52:08 -0300, Fabio Estevam wrote:
> dtc complains about the leading zeroes:
> 
> arch/arm64/boot/dts/qcom/sm6125.dtsi:497.19-503.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f121000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:505.19-510.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f123000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:512.19-517.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f124000: unit name should not have leading 0
> 
> Remove them.
> 
> [...]

Applied, thanks!

[1/1] arm64: dts: sm6125: Remove leading zeroes
      commit: 2e7586bab95f5d284867c35ca46c0f0c19ccbf7f

Best regards,
-- 
Bjorn Andersson <bjorn.andersson@linaro.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] arm64: dts: sm6125: Remove leading zeroes
  2021-09-22 19:52 [PATCH] arm64: dts: sm6125: Remove leading zeroes Fabio Estevam
  2021-09-23 21:24 ` Martin Botka
  2021-09-24  2:23 ` (subset) " Bjorn Andersson
@ 2021-09-24  2:30 ` patchwork-bot+linux-arm-msm
  2021-10-20 13:25 ` Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+linux-arm-msm @ 2021-09-24  2:30 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: linux-arm-msm

Hello:

This patch was applied to qcom/linux.git (refs/heads/for-next):

On Wed, 22 Sep 2021 16:52:08 -0300 you wrote:
> dtc complains about the leading zeroes:
> 
> arch/arm64/boot/dts/qcom/sm6125.dtsi:497.19-503.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f121000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:505.19-510.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f123000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:512.19-517.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f124000: unit name should not have leading 0
> 
> Remove them.
> 
> [...]

Here is the summary with links:
  - arm64: dts: sm6125: Remove leading zeroes
    https://git.kernel.org/qcom/c/07b2fb604672

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] arm64: dts: sm6125: Remove leading zeroes
  2021-09-22 19:52 [PATCH] arm64: dts: sm6125: Remove leading zeroes Fabio Estevam
                   ` (2 preceding siblings ...)
  2021-09-24  2:30 ` patchwork-bot+linux-arm-msm
@ 2021-10-20 13:25 ` Geert Uytterhoeven
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2021-10-20 13:25 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Björn Andersson, Rob Herring, linux-arm-msm, martin.botka,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS

On Wed, Sep 22, 2021 at 9:52 PM Fabio Estevam <festevam@gmail.com> wrote:
> dtc complains about the leading zeroes:
>
> arch/arm64/boot/dts/qcom/sm6125.dtsi:497.19-503.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f121000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:505.19-510.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f123000: unit name should not have leading 0s
> arch/arm64/boot/dts/qcom/sm6125.dtsi:512.19-517.6: Warning (unit_address_format): /soc/timer@f120000/frame@0f124000: unit name should not have leading 0
>
> Remove them.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-10-20 13:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-22 19:52 [PATCH] arm64: dts: sm6125: Remove leading zeroes Fabio Estevam
2021-09-23 21:24 ` Martin Botka
2021-09-24  2:23 ` (subset) " Bjorn Andersson
2021-09-24  2:30 ` patchwork-bot+linux-arm-msm
2021-10-20 13:25 ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).