]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
stm32mp: dram_init: Fix AARCH64 compilation warnings
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Fri, 27 Oct 2023 14:42:58 +0000 (16:42 +0200)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Mon, 13 Nov 2023 09:55:38 +0000 (10:55 +0100)
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 type 'phys_addr_t' {aka 'long long unsigned
  int'}

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
arch/arm/mach-stm32mp/dram_init.c

index a1e77a42e4f60bac074c26fffa2c263257f5c7d0..cb35ed60ca193fa11f1f9cddd7a96f2eff89eec9 100644 (file)
@@ -36,7 +36,7 @@ int dram_init(void)
                log_debug("Cannot get RAM size: %d\n", ret);
                return ret;
        }
-       log_debug("RAM init base=%lx, size=%x\n", ram.base, ram.size);
+       log_debug("RAM init base=%p, size=%zx\n", (void *)ram.base, ram.size);
 
        gd->ram_size = ram.size;