All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] Renesas drop leading 0x from rpc nodes
@ 2020-11-18 11:28 Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 1/8] ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node Lad Prabhakar
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Hi All,

This patch series drops leading 0x from rpc nodes.

Cheers,
Prabhakar

Lad Prabhakar (8):
  ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node
  ARM: dts: r8a77990-u-boot: Remove leading 0x from rpc node
  ARM: dts: 8a77980-u-boot: Remove leading 0x from rpc node
  M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
  ARM: dts: r8a77960-u-boot: Remove leading 0x from rpc node
  ARM: dts: r8a77995-u-boot: Remove leading 0x from rpc node
  ARM: dts: r8a77970-u-boot: Remove leading 0x from rpc node
  ARM: dts: r7s72100-gr-peach-u-boot: Remove leading 0x from rpc node

 arch/arm/dts/r7s72100-gr-peach-u-boot.dts | 2 +-
 arch/arm/dts/r8a77950-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77960-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77965-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77970-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77980-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77990-u-boot.dtsi         | 2 +-
 arch/arm/dts/r8a77995-u-boot.dtsi         | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

-- 
2.17.1

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

* [PATCH 1/8] ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 2/8] ARM: dts: r8a77990-u-boot: " Lad Prabhakar
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77965-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77965-u-boot.dtsi b/arch/arm/dts/r8a77965-u-boot.dtsi
index 33ff5b148b..9cc6f20537 100644
--- a/arch/arm/dts/r8a77965-u-boot.dtsi
+++ b/arch/arm/dts/r8a77965-u-boot.dtsi
@@ -13,7 +13,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a77965", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 2/8] ARM: dts: r8a77990-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 1/8] ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 3/8] ARM: dts: 8a77980-u-boot: " Lad Prabhakar
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77990-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77990-u-boot.dtsi b/arch/arm/dts/r8a77990-u-boot.dtsi
index ddf8b62627..6655abe875 100644
--- a/arch/arm/dts/r8a77990-u-boot.dtsi
+++ b/arch/arm/dts/r8a77990-u-boot.dtsi
@@ -9,7 +9,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a77990", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 3/8] ARM: dts: 8a77980-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 1/8] ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 2/8] ARM: dts: r8a77990-u-boot: " Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 4/8] M: dts: r8a77950-u-boot: " Lad Prabhakar
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77980-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77980-u-boot.dtsi b/arch/arm/dts/r8a77980-u-boot.dtsi
index 1050f6e991..365d40ac49 100644
--- a/arch/arm/dts/r8a77980-u-boot.dtsi
+++ b/arch/arm/dts/r8a77980-u-boot.dtsi
@@ -13,7 +13,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a77980", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
                   ` (2 preceding siblings ...)
  2020-11-18 11:28 ` [PATCH 3/8] ARM: dts: 8a77980-u-boot: " Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:32   ` Prabhakar Mahadev Lad
  2020-11-18 11:28 ` [PATCH 5/8] ARM: dts: r8a77960-u-boot: " Lad Prabhakar
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77950-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77950-u-boot.dtsi b/arch/arm/dts/r8a77950-u-boot.dtsi
index 0317f47f0f..5a11651464 100644
--- a/arch/arm/dts/r8a77950-u-boot.dtsi
+++ b/arch/arm/dts/r8a77950-u-boot.dtsi
@@ -13,7 +13,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a7795", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 5/8] ARM: dts: r8a77960-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
                   ` (3 preceding siblings ...)
  2020-11-18 11:28 ` [PATCH 4/8] M: dts: r8a77950-u-boot: " Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:28 ` [PATCH 6/8] ARM: dts: r8a77995-u-boot: " Lad Prabhakar
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77960-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77960-u-boot.dtsi b/arch/arm/dts/r8a77960-u-boot.dtsi
index 826c2384bc..f1cae1c359 100644
--- a/arch/arm/dts/r8a77960-u-boot.dtsi
+++ b/arch/arm/dts/r8a77960-u-boot.dtsi
@@ -13,7 +13,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a7796", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 6/8] ARM: dts: r8a77995-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
                   ` (4 preceding siblings ...)
  2020-11-18 11:28 ` [PATCH 5/8] ARM: dts: r8a77960-u-boot: " Lad Prabhakar
@ 2020-11-18 11:28 ` Lad Prabhakar
  2020-11-18 11:29 ` [PATCH 7/8] ARM: dts: r8a77970-u-boot: " Lad Prabhakar
  2020-11-18 11:29 ` [PATCH 8/8] ARM: dts: r7s72100-gr-peach-u-boot: " Lad Prabhakar
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:28 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77995-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77995-u-boot.dtsi b/arch/arm/dts/r8a77995-u-boot.dtsi
index 8e9f6b7a7d..0917a80f09 100644
--- a/arch/arm/dts/r8a77995-u-boot.dtsi
+++ b/arch/arm/dts/r8a77995-u-boot.dtsi
@@ -9,7 +9,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a77995", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 7/8] ARM: dts: r8a77970-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
                   ` (5 preceding siblings ...)
  2020-11-18 11:28 ` [PATCH 6/8] ARM: dts: r8a77995-u-boot: " Lad Prabhakar
@ 2020-11-18 11:29 ` Lad Prabhakar
  2020-11-18 11:29 ` [PATCH 8/8] ARM: dts: r7s72100-gr-peach-u-boot: " Lad Prabhakar
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:29 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r8a77970-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r8a77970-u-boot.dtsi b/arch/arm/dts/r8a77970-u-boot.dtsi
index eabab7ce58..ac3c6be4ad 100644
--- a/arch/arm/dts/r8a77970-u-boot.dtsi
+++ b/arch/arm/dts/r8a77970-u-boot.dtsi
@@ -13,7 +13,7 @@
 
 / {
 	soc {
-		rpc: rpc at 0xee200000 {
+		rpc: rpc at ee200000 {
 			compatible = "renesas,rpc-r8a77970", "renesas,rpc";
 			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
 			clocks = <&cpg CPG_MOD 917>;
-- 
2.17.1

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

* [PATCH 8/8] ARM: dts: r7s72100-gr-peach-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
                   ` (6 preceding siblings ...)
  2020-11-18 11:29 ` [PATCH 7/8] ARM: dts: r8a77970-u-boot: " Lad Prabhakar
@ 2020-11-18 11:29 ` Lad Prabhakar
  7 siblings, 0 replies; 12+ messages in thread
From: Lad Prabhakar @ 2020-11-18 11:29 UTC (permalink / raw)
  To: u-boot

Remove the leading "0x" from rpc node to fix the below dtc warning:

Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
address format error, expected "ee200000"

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 arch/arm/dts/r7s72100-gr-peach-u-boot.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/r7s72100-gr-peach-u-boot.dts b/arch/arm/dts/r7s72100-gr-peach-u-boot.dts
index 30e35e47d6..f48121a9a8 100644
--- a/arch/arm/dts/r7s72100-gr-peach-u-boot.dts
+++ b/arch/arm/dts/r7s72100-gr-peach-u-boot.dts
@@ -46,7 +46,7 @@
 	};
 
 
-	rpc: rpc at 0xee200000 {
+	rpc: rpc at ee200000 {
 		compatible = "renesas,rpc-r7s72100", "renesas,rpc";
 		reg = <0x3fefa000 0x100>, <0x18000000 0x08000000>;
 		bank-width = <2>;
-- 
2.17.1

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

* [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:28 ` [PATCH 4/8] M: dts: r8a77950-u-boot: " Lad Prabhakar
@ 2020-11-18 11:32   ` Prabhakar Mahadev Lad
  2020-11-29 12:56     ` Marek Vasut
  0 siblings, 1 reply; 12+ messages in thread
From: Prabhakar Mahadev Lad @ 2020-11-18 11:32 UTC (permalink / raw)
  To: u-boot

Hi Marek,

> -----Original Message-----
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> Sent: 18 November 2020 11:29
> To: Marek Vasut <marek.vasut+renesas@gmail.com>; u-boot at lists.denx.de
> Cc: Biju Das <biju.das.jz@bp.renesas.com>; Prabhakar <prabhakar.csengg@gmail.com>; Prabhakar Mahadev
> Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>
> Subject: [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
> 
I missed the typo in the subject s/M/ARM shall I just resend this patch if that's OK with you.

Cheers,
Prabhakar

> Remove the leading "0x" from rpc node to fix the below dtc warning:
> 
> Warning (simple_bus_reg): Node /soc/rpc at 0xee200000 simple-bus unit
> address format error, expected "ee200000"
> 
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> ---
>  arch/arm/dts/r8a77950-u-boot.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/dts/r8a77950-u-boot.dtsi b/arch/arm/dts/r8a77950-u-boot.dtsi
> index 0317f47f0f..5a11651464 100644
> --- a/arch/arm/dts/r8a77950-u-boot.dtsi
> +++ b/arch/arm/dts/r8a77950-u-boot.dtsi
> @@ -13,7 +13,7 @@
> 
>  / {
>  	soc {
> -		rpc: rpc at 0xee200000 {
> +		rpc: rpc at ee200000 {
>  			compatible = "renesas,rpc-r8a7795", "renesas,rpc";
>  			reg = <0 0xee200000 0 0x100>, <0 0x08000000 0 0>;
>  			clocks = <&cpg CPG_MOD 917>;
> --
> 2.17.1

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

* [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
  2020-11-18 11:32   ` Prabhakar Mahadev Lad
@ 2020-11-29 12:56     ` Marek Vasut
  2020-11-29 13:22       ` Lad, Prabhakar
  0 siblings, 1 reply; 12+ messages in thread
From: Marek Vasut @ 2020-11-29 12:56 UTC (permalink / raw)
  To: u-boot

On 11/18/20 12:32 PM, Prabhakar Mahadev Lad wrote:

[...]

>> Subject: [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
>>
> I missed the typo in the subject s/M/ARM shall I just resend this patch if that's OK with you.

If you could squash all the RPC fixes into a single patch and send that 
as one patch -- since they are all fixing the exact same problem -- that 
would help.

Thanks

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

* [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
  2020-11-29 12:56     ` Marek Vasut
@ 2020-11-29 13:22       ` Lad, Prabhakar
  0 siblings, 0 replies; 12+ messages in thread
From: Lad, Prabhakar @ 2020-11-29 13:22 UTC (permalink / raw)
  To: u-boot

Hi Marek,

Thank you for the review.

On Sun, Nov 29, 2020 at 1:06 PM Marek Vasut <marek.vasut@gmail.com> wrote:
>
> On 11/18/20 12:32 PM, Prabhakar Mahadev Lad wrote:
>
> [...]
>
> >> Subject: [PATCH 4/8] M: dts: r8a77950-u-boot: Remove leading 0x from rpc node
> >>
> > I missed the typo in the subject s/M/ARM shall I just resend this patch if that's OK with you.
>
> If you could squash all the RPC fixes into a single patch and send that
> as one patch -- since they are all fixing the exact same problem -- that
> would help.
>
Done posted a v2.

Cheers,
Prabhakar

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

end of thread, other threads:[~2020-11-29 13:22 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-18 11:28 [PATCH 0/8] Renesas drop leading 0x from rpc nodes Lad Prabhakar
2020-11-18 11:28 ` [PATCH 1/8] ARM: dts: r8a77965-u-boot: Remove leading 0x from rpc node Lad Prabhakar
2020-11-18 11:28 ` [PATCH 2/8] ARM: dts: r8a77990-u-boot: " Lad Prabhakar
2020-11-18 11:28 ` [PATCH 3/8] ARM: dts: 8a77980-u-boot: " Lad Prabhakar
2020-11-18 11:28 ` [PATCH 4/8] M: dts: r8a77950-u-boot: " Lad Prabhakar
2020-11-18 11:32   ` Prabhakar Mahadev Lad
2020-11-29 12:56     ` Marek Vasut
2020-11-29 13:22       ` Lad, Prabhakar
2020-11-18 11:28 ` [PATCH 5/8] ARM: dts: r8a77960-u-boot: " Lad Prabhakar
2020-11-18 11:28 ` [PATCH 6/8] ARM: dts: r8a77995-u-boot: " Lad Prabhakar
2020-11-18 11:29 ` [PATCH 7/8] ARM: dts: r8a77970-u-boot: " Lad Prabhakar
2020-11-18 11:29 ` [PATCH 8/8] ARM: dts: r7s72100-gr-peach-u-boot: " Lad Prabhakar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.