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/mpc824x | |
parent | 2f848f97d7b27a88135de98aae76531a6fdd44e6 (diff) | |
download | u-boot-imx-6b44d9e5b79948a73f9fae4b84c21f62224fa46b.zip u-boot-imx-6b44d9e5b79948a73f9fae4b84c21f62224fa46b.tar.gz u-boot-imx-6b44d9e5b79948a73f9fae4b84c21f62224fa46b.tar.bz2 |
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/mpc824x')
-rw-r--r-- | arch/powerpc/cpu/mpc824x/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc824x/cpu.c b/arch/powerpc/cpu/mpc824x/cpu.c index 7ed38c8..eaa4e87 100644 --- a/arch/powerpc/cpu/mpc824x/cpu.c +++ b/arch/powerpc/cpu/mpc824x/cpu.c @@ -45,7 +45,7 @@ int checkcpu (void) return -1; /* no valid CPU revision info */ } - printf (" at %s MHz: ", strmhz (buf, clock)); + printf(" at %s MHz: ", strmhz(buf, clock)); print_size(checkicache(), " I-Cache "); print_size(checkdcache(), " D-Cache\n"); |