Re: [PATCH v1 3/9] stm32mp: dram_init: Fix AARCH64 compilation warnings

2023-11-10 Thread Patrice CHOTARD
On 11/9/23 10:13, Patrick DELAUNAY wrote: > Hi, > > > On 10/27/23 16:42, Patrice Chotard wrote: >> From: Patrick Delaunay >> >> When building with AARCH64 defconfig, we got warnings for debug >> message >> - format '%x' expects argument of type 'unsigned int', >>     but argument 3 has type '

Re: [PATCH v1 3/9] stm32mp: dram_init: Fix AARCH64 compilation warnings

2023-11-10 Thread Patrice CHOTARD
On 10/27/23 16:42, Patrice Chotard wrote: > From: Patrick Delaunay > > When building with AARCH64 defconfig, we got warnings for debug > message > - format '%x' expects argument of type 'unsigned int', >but argument 3 has type 'size_t' {aka 'long unsigned int'}). > - format '%lx' expects a

Re: [PATCH v1 3/9] stm32mp: dram_init: Fix AARCH64 compilation warnings

2023-11-09 Thread Patrick DELAUNAY
Hi, On 10/27/23 16:42, Patrice Chotard wrote: From: Patrick Delaunay When building with AARCH64 defconfig, we got warnings for debug message - format '%x' expects argument of type 'unsigned int', but argument 3 has type 'size_t' {aka 'long unsigned int'}). - format '%lx' expects argument

[PATCH v1 3/9] stm32mp: dram_init: Fix AARCH64 compilation warnings

2023-10-27 Thread Patrice Chotard
From: Patrick Delaunay When building with AARCH64 defconfig, we got warnings for debug message - format '%x' expects argument of type 'unsigned int', but argument 3 has type 'size_t' {aka 'long unsigned int'}). - format '%lx' expects argument of type 'long unsigned int', but argument 2 has t

[PATCH v1 3/9] stm32mp: dram_init: Fix AARCH64 compilation warnings

2023-10-27 Thread Patrice Chotard
From: Patrick Delaunay When building with AARCH64 defconfig, we got warnings for debug message - format '%x' expects argument of type 'unsigned int', but argument 3 has type 'size_t' {aka 'long unsigned int'}). - format '%lx' expects argument of type 'long unsigned int', but argument 2 has t