All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address
@ 2021-11-15 10:39 Patrice Chotard
  2021-11-15 10:39 ` [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi Patrice Chotard
                   ` (8 more replies)
  0 siblings, 9 replies; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address in STM32 device tree


Patrice Chotard (8):
  ARM: dts: stm32: Use lower-case hex for address for
    stm32mp15-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32f769-disco-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32746-disco-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32f7-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32f469-disco-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32f429-disco-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32f746g-eval-u-boot.dtsi
  ARM: dts: stm32: Use lower-case hex for address for
    stm32429i-eval-u-boot.dtsi

 arch/arm/dts/stm32429i-eval-u-boot.dtsi  | 2 +-
 arch/arm/dts/stm32746g-eval-u-boot.dtsi  | 2 +-
 arch/arm/dts/stm32f429-disco-u-boot.dtsi | 2 +-
 arch/arm/dts/stm32f469-disco-u-boot.dtsi | 6 +++---
 arch/arm/dts/stm32f7-u-boot.dtsi         | 4 ++--
 arch/arm/dts/stm32f746-disco-u-boot.dtsi | 2 +-
 arch/arm/dts/stm32f769-disco-u-boot.dtsi | 6 +++---
 arch/arm/dts/stm32mp15-u-boot.dtsi       | 8 ++++----
 8 files changed, 16 insertions(+), 16 deletions(-)

-- 
2.17.1


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

* [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:38   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi Patrice Chotard
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32mp15-u-boot.dtsi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/dts/stm32mp15-u-boot.dtsi b/arch/arm/dts/stm32mp15-u-boot.dtsi
index db23d80eef..e23d6c7d7e 100644
--- a/arch/arm/dts/stm32mp15-u-boot.dtsi
+++ b/arch/arm/dts/stm32mp15-u-boot.dtsi
@@ -50,8 +50,8 @@
 
 			compatible = "st,stm32mp1-ddr";
 
-			reg = <0x5A003000 0x550
-			       0x5A004000 0x234>;
+			reg = <0x5a003000 0x550
+			       0x5a004000 0x234>;
 
 			clocks = <&rcc AXIDCG>,
 				 <&rcc DDRC1>,
@@ -237,7 +237,7 @@
 	u-boot-stm32 {
 		filename = "u-boot.stm32";
 		mkimage {
-			args = "-T stm32image -a 0xC0100000 -e 0xC0100000";
+			args = "-T stm32image -a 0xc0100000 -e 0xc0100000";
 			u-boot {
 			};
 		};
@@ -250,7 +250,7 @@
 	spl-stm32 {
 		filename = "u-boot-spl.stm32";
 		mkimage {
-			args = "-T stm32image -a 0x2FFC2500 -e 0x2FFC2500";
+			args = "-T stm32image -a 0x2ffc2500 -e 0x2ffc2500";
 			u-boot-spl {
 			};
 		};
-- 
2.17.1


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

* [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
  2021-11-15 10:39 ` [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:39   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi Patrice Chotard
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32f769-disco-u-boot.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/dts/stm32f769-disco-u-boot.dtsi b/arch/arm/dts/stm32f769-disco-u-boot.dtsi
index 7dfe430a40..5589b41652 100644
--- a/arch/arm/dts/stm32f769-disco-u-boot.dtsi
+++ b/arch/arm/dts/stm32f769-disco-u-boot.dtsi
@@ -53,9 +53,9 @@
 	soc {
 		dsi: dsi@40016c00 {
 			compatible = "st,stm32-dsi";
-			reg = <0x40016C00 0x800>;
+			reg = <0x40016c00 0x800>;
 			resets = <&rcc STM32F7_APB2_RESET(DSI)>;
-			clocks =  <&rcc 0 STM32F7_APB2_CLOCK(DSI)>,
+			clocks = <&rcc 0 STM32F7_APB2_CLOCK(DSI)>,
 				  <&rcc 0 STM32F7_APB2_CLOCK(LTDC)>,
 				  <&clk_hse>;
 			clock-names = "pclk", "px_clk", "ref";
@@ -227,7 +227,7 @@
 };
 
 &qspi {
-	reg = <0xA0001000 0x1000>, <0x90000000 0x4000000>;
+	reg = <0xa0001000 0x1000>, <0x90000000 0x4000000>;
 	flash0: mx66l51235l@0 {
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.17.1


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

* [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
  2021-11-15 10:39 ` [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi Patrice Chotard
  2021-11-15 10:39 ` [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:39   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi Patrice Chotard
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32f746-disco-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/stm32f746-disco-u-boot.dtsi b/arch/arm/dts/stm32f746-disco-u-boot.dtsi
index 4f34fc9a8c..f88466fa60 100644
--- a/arch/arm/dts/stm32f746-disco-u-boot.dtsi
+++ b/arch/arm/dts/stm32f746-disco-u-boot.dtsi
@@ -228,7 +228,7 @@
 };
 
 &qspi {
-	reg = <0xA0001000 0x1000>, <0x90000000 0x1000000>;
+	reg = <0xa0001000 0x1000>, <0x90000000 0x1000000>;
 	qflash0: n25q128a@0 {
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.17.1


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

* [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (2 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:39   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi Patrice Chotard
                   ` (4 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32f7-u-boot.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/dts/stm32f7-u-boot.dtsi b/arch/arm/dts/stm32f7-u-boot.dtsi
index 46bd1102df..c1b2ac25c3 100644
--- a/arch/arm/dts/stm32f7-u-boot.dtsi
+++ b/arch/arm/dts/stm32f7-u-boot.dtsi
@@ -7,7 +7,7 @@
 
 		fmc: fmc@A0000000 {
 			compatible = "st,stm32-fmc";
-			reg = <0xA0000000 0x1000>;
+			reg = <0xa0000000 0x1000>;
 			clocks = <&rcc 0 STM32F7_AHB3_CLOCK(FMC)>;
 			pinctrl-0 = <&fmc_pins>;
 			pinctrl-names = "default";
@@ -46,7 +46,7 @@
 			compatible = "st,stm32f469-qspi";
 			#address-cells = <1>;
 			#size-cells = <0>;
-			reg = <0xA0001000 0x1000>, <0x90000000 0x10000000>;
+			reg = <0xa0001000 0x1000>, <0x90000000 0x10000000>;
 			reg-names = "qspi", "qspi_mm";
 			interrupts = <92>;
 			spi-max-frequency = <108000000>;
-- 
2.17.1


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

* [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (3 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:39   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi Patrice Chotard
                   ` (3 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32f469-disco-u-boot.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/dts/stm32f469-disco-u-boot.dtsi b/arch/arm/dts/stm32f469-disco-u-boot.dtsi
index 9eda8f535b..cd173623ef 100644
--- a/arch/arm/dts/stm32f469-disco-u-boot.dtsi
+++ b/arch/arm/dts/stm32f469-disco-u-boot.dtsi
@@ -34,7 +34,7 @@
 
 		fmc: fmc@A0000000 {
 			compatible = "st,stm32-fmc";
-			reg = <0xA0000000 0x1000>;
+			reg = <0xa0000000 0x1000>;
 			clocks = <&rcc 0 STM32F4_AHB3_CLOCK(FMC)>;
 			st,syscfg = <&syscfg>;
 			pinctrl-0 = <&fmc_pins_d32>;
@@ -70,7 +70,7 @@
 			compatible = "st,stm32f469-qspi";
 			#address-cells = <1>;
 			#size-cells = <0>;
-			reg = <0xA0001000 0x1000>, <0x90000000 0x10000000>;
+			reg = <0xa0001000 0x1000>, <0x90000000 0x10000000>;
 			reg-names = "qspi", "qspi_mm";
 			interrupts = <91>;
 			spi-max-frequency = <108000000>;
@@ -236,7 +236,7 @@
 };
 
 &qspi {
-	reg = <0xA0001000 0x1000>, <0x90000000 0x1000000>;
+	reg = <0xa0001000 0x1000>, <0x90000000 0x1000000>;
 	flash0: n25q128a@0 {
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.17.1


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

* [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (4 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:39   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi Patrice Chotard
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32f429-disco-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/stm32f429-disco-u-boot.dtsi b/arch/arm/dts/stm32f429-disco-u-boot.dtsi
index 297cc56144..c993f86be8 100644
--- a/arch/arm/dts/stm32f429-disco-u-boot.dtsi
+++ b/arch/arm/dts/stm32f429-disco-u-boot.dtsi
@@ -33,7 +33,7 @@
 
 		fmc: fmc@A0000000 {
 			compatible = "st,stm32-fmc";
-			reg = <0xA0000000 0x1000>;
+			reg = <0xa0000000 0x1000>;
 			clocks = <&rcc 0 STM32F4_AHB3_CLOCK(FMC)>;
 			pinctrl-0 = <&fmc_pins>;
 			pinctrl-names = "default";
-- 
2.17.1


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

* [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (5 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:40   ` Patrick DELAUNAY
  2021-11-15 10:39 ` [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi Patrice Chotard
  2021-11-30 10:18 ` [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice CHOTARD
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---

 arch/arm/dts/stm32746g-eval-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/stm32746g-eval-u-boot.dtsi b/arch/arm/dts/stm32746g-eval-u-boot.dtsi
index f2195a6c51..8550ef7863 100644
--- a/arch/arm/dts/stm32746g-eval-u-boot.dtsi
+++ b/arch/arm/dts/stm32746g-eval-u-boot.dtsi
@@ -177,7 +177,7 @@
 };
 
 &qspi {
-	reg = <0xA0001000 0x1000>, <0x90000000 0x4000000>;
+	reg = <0xa0001000 0x1000>, <0x90000000 0x4000000>;
 	qflash0: n25q512a@0 {
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.17.1


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

* [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (6 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi Patrice Chotard
@ 2021-11-15 10:39 ` Patrice Chotard
  2021-11-15 11:40   ` Patrick DELAUNAY
  2021-11-30 10:18 ` [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice CHOTARD
  8 siblings, 1 reply; 18+ messages in thread
From: Patrice Chotard @ 2021-11-15 10:39 UTC (permalink / raw)
  To: u-boot; +Cc: Patrice CHOTARD, Patrick DELAUNAY, U-Boot STM32, Tom Rini

Replace upper-case hex with lower-case hex for address.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>

---

 arch/arm/dts/stm32429i-eval-u-boot.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/stm32429i-eval-u-boot.dtsi b/arch/arm/dts/stm32429i-eval-u-boot.dtsi
index 09d9d9ab9b..fcab9ae977 100644
--- a/arch/arm/dts/stm32429i-eval-u-boot.dtsi
+++ b/arch/arm/dts/stm32429i-eval-u-boot.dtsi
@@ -33,7 +33,7 @@
 
 		fmc: fmc@A0000000 {
 			compatible = "st,stm32-fmc";
-			reg = <0xA0000000 0x1000>;
+			reg = <0xa0000000 0x1000>;
 			clocks = <&rcc 0 STM32F4_AHB3_CLOCK(FMC)>;
 			st,syscfg = <&syscfg>;
 			pinctrl-0 = <&fmc_pins_d32>;
-- 
2.17.1


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

* Re: [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:38   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:38 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32mp15-u-boot.dtsi | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>

Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick



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

* Re: [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:39   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:39 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32f769-disco-u-boot.dtsi | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:39   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:39 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32f746-disco-u-boot.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:39   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:39 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32f7-u-boot.dtsi | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>

Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:39   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:39 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32f469-disco-u-boot.dtsi | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:39   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:39 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32f429-disco-u-boot.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:40   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:40 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
> ---
>
>   arch/arm/dts/stm32746g-eval-u-boot.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi
  2021-11-15 10:39 ` [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi Patrice Chotard
@ 2021-11-15 11:40   ` Patrick DELAUNAY
  0 siblings, 0 replies; 18+ messages in thread
From: Patrick DELAUNAY @ 2021-11-15 11:40 UTC (permalink / raw)
  To: Patrice Chotard, u-boot; +Cc: U-Boot STM32, Tom Rini

Hi,

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address.
>
> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
>
> ---
>
>   arch/arm/dts/stm32429i-eval-u-boot.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>


Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Thanks
Patrick




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

* Re: [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address
  2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
                   ` (7 preceding siblings ...)
  2021-11-15 10:39 ` [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi Patrice Chotard
@ 2021-11-30 10:18 ` Patrice CHOTARD
  8 siblings, 0 replies; 18+ messages in thread
From: Patrice CHOTARD @ 2021-11-30 10:18 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick DELAUNAY, U-Boot STM32, Tom Rini

Hi

On 11/15/21 11:39 AM, Patrice Chotard wrote:
> Replace upper-case hex with lower-case hex for address in STM32 device tree
> 
> 
> Patrice Chotard (8):
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32mp15-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32f769-disco-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32746-disco-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32f7-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32f469-disco-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32f429-disco-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32f746g-eval-u-boot.dtsi
>   ARM: dts: stm32: Use lower-case hex for address for
>     stm32429i-eval-u-boot.dtsi
> 
>  arch/arm/dts/stm32429i-eval-u-boot.dtsi  | 2 +-
>  arch/arm/dts/stm32746g-eval-u-boot.dtsi  | 2 +-
>  arch/arm/dts/stm32f429-disco-u-boot.dtsi | 2 +-
>  arch/arm/dts/stm32f469-disco-u-boot.dtsi | 6 +++---
>  arch/arm/dts/stm32f7-u-boot.dtsi         | 4 ++--
>  arch/arm/dts/stm32f746-disco-u-boot.dtsi | 2 +-
>  arch/arm/dts/stm32f769-disco-u-boot.dtsi | 6 +++---
>  arch/arm/dts/stm32mp15-u-boot.dtsi       | 8 ++++----
>  8 files changed, 16 insertions(+), 16 deletions(-)
> 

For the series, applied to to u-boot-stm32/next

Thanks
Patrice

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

end of thread, other threads:[~2021-11-30 10:19 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15 10:39 [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice Chotard
2021-11-15 10:39 ` [PATCH 1/8] ARM: dts: stm32: Use lower-case hex for address for stm32mp15-u-boot.dtsi Patrice Chotard
2021-11-15 11:38   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 2/8] ARM: dts: stm32: Use lower-case hex for address for stm32f769-disco-u-boot.dtsi Patrice Chotard
2021-11-15 11:39   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 3/8] ARM: dts: stm32: Use lower-case hex for address for stm32746-disco-u-boot.dtsi Patrice Chotard
2021-11-15 11:39   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 4/8] ARM: dts: stm32: Use lower-case hex for address for stm32f7-u-boot.dtsi Patrice Chotard
2021-11-15 11:39   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 5/8] ARM: dts: stm32: Use lower-case hex for address for stm32f469-disco-u-boot.dtsi Patrice Chotard
2021-11-15 11:39   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 6/8] ARM: dts: stm32: Use lower-case hex for address for stm32f429-disco-u-boot.dtsi Patrice Chotard
2021-11-15 11:39   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 7/8] ARM: dts: stm32: Use lower-case hex for address for stm32f746g-eval-u-boot.dtsi Patrice Chotard
2021-11-15 11:40   ` Patrick DELAUNAY
2021-11-15 10:39 ` [PATCH 8/8] ARM: dts: stm32: Use lower-case hex for address for stm32429i-eval-u-boot.dtsi Patrice Chotard
2021-11-15 11:40   ` Patrick DELAUNAY
2021-11-30 10:18 ` [PATCH 0/8] ARM: dts: stm32: use lower-case hex for address Patrice CHOTARD

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.