diff options
| author | Shruti Kanetkar <Shruti@Freescale.com> | 2013-08-15 11:25:38 -0500 | 
|---|---|---|
| committer | York Sun <yorksun@freescale.com> | 2013-08-20 10:38:12 -0700 | 
| commit | 6b44d9e5b79948a73f9fae4b84c21f62224fa46b (patch) | |
| tree | 7cc38f702d5b496d993ad4f7428f7888379e9c62 /arch/powerpc/cpu/mpc8xx/video.c | |
| parent | 2f848f97d7b27a88135de98aae76531a6fdd44e6 (diff) | |
| download | olio-uboot-2014.01-6b44d9e5b79948a73f9fae4b84c21f62224fa46b.tar.xz olio-uboot-2014.01-6b44d9e5b79948a73f9fae4b84c21f62224fa46b.zip | |
powerpcv2: Print hardcoded size like print_size() does
Makes the startup output more consistent
Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
Acked-by: Andy Fleming <afleming@freescale.com>
Acked-by: Stefan Roese <sr@denx.de>
Acked-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc8xx/video.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc8xx/video.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/powerpc/cpu/mpc8xx/video.c b/arch/powerpc/cpu/mpc8xx/video.c index 02a046789..fc351585b 100644 --- a/arch/powerpc/cpu/mpc8xx/video.c +++ b/arch/powerpc/cpu/mpc8xx/video.c @@ -1176,7 +1176,7 @@ static void *video_logo (void)  #ifndef CONFIG_FADS		/* all normal boards */  	/* leave one blank line */ -	sprintf (info, "MPC823 CPU at %s MHz, %ld MB RAM, %ld MB Flash", +	sprintf(info, "MPC823 CPU at %s MHz, %ld MiB RAM, %ld MiB Flash",  		strmhz(temp, gd->cpu_clk),  		gd->ram_size >> 20,  		gd->bd->bi_flashsize >> 20 ); @@ -1187,7 +1187,7 @@ static void *video_logo (void)  	video_drawstring (VIDEO_INFO_X, VIDEO_INFO_Y + VIDEO_FONT_HEIGHT,  					  info); -	sprintf (info, "2MB FLASH - 8MB DRAM - 4MB SRAM"); +	sprintf(info, "2MiB FLASH - 8MiB DRAM - 4MiB SRAM");  	video_drawstring (VIDEO_INFO_X, VIDEO_INFO_Y + VIDEO_FONT_HEIGHT * 2,  					  info);  #endif |