diff mbox

[U-Boot] sunxi: spl: Fix DRAM info printing

Message ID 1466942245-15036-1-git-send-email-hdegoede@redhat.com
State Accepted
Commit cd8b35d2e14f598ab0e5c8a211495b675b978915
Delegated to: Hans de Goede
Headers show

Commit Message

Hans de Goede June 26, 2016, 11:57 a.m. UTC
The switch to simple_printf was causing the SPL dram info to show as:

DRAM: u MiB

This fixes this by switching from %lu to %d for printing the DRAM size.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 board/sunxi/board.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ian Campbell June 30, 2016, 10:33 a.m. UTC | #1
On Sun, 2016-06-26 at 13:57 +0200, Hans de Goede wrote:
> The switch to simple_printf was causing the SPL dram info to show as:
> 
> DRAM: u MiB
> 
> This fixes this by switching from %lu to %d for printing the DRAM size.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

Acked-by: Ian Campbell <ijc@hellion.org.uk>
diff mbox

Patch

diff --git a/board/sunxi/board.c b/board/sunxi/board.c
index 41d796c..97aaa6d 100644
--- a/board/sunxi/board.c
+++ b/board/sunxi/board.c
@@ -529,7 +529,7 @@  void sunxi_board_init(void)
 #endif
 	printf("DRAM:");
 	ramsize = sunxi_dram_init();
-	printf(" %lu MiB\n", ramsize >> 20);
+	printf(" %d MiB\n", (int)(ramsize >> 20));
 	if (!ramsize)
 		hang();