summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/mpc86xx
diff options
context:
space:
mode:
authorShruti Kanetkar <Shruti@Freescale.com>2013-08-15 11:25:38 -0500
committerYork Sun <yorksun@freescale.com>2013-08-20 10:38:12 -0700
commit6b44d9e5b79948a73f9fae4b84c21f62224fa46b (patch)
tree7cc38f702d5b496d993ad4f7428f7888379e9c62 /arch/powerpc/cpu/mpc86xx
parent2f848f97d7b27a88135de98aae76531a6fdd44e6 (diff)
downloadu-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/mpc86xx')
-rw-r--r--arch/powerpc/cpu/mpc86xx/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/cpu/mpc86xx/cpu.c b/arch/powerpc/cpu/mpc86xx/cpu.c
index ab3250b..3051854 100644
--- a/arch/powerpc/cpu/mpc86xx/cpu.c
+++ b/arch/powerpc/cpu/mpc86xx/cpu.c
@@ -85,8 +85,8 @@ checkcpu(void)
sysinfo.freq_localbus);
}
- puts("L1: D-cache 32 KB enabled\n");
- puts(" I-cache 32 KB enabled\n");
+ puts("L1: D-cache 32 KiB enabled\n");
+ puts(" I-cache 32 KiB enabled\n");
puts("L2: ");
if (get_l2cr() & 0x80000000) {
@@ -95,7 +95,7 @@ checkcpu(void)
#elif defined(CONFIG_MPC8641)
puts("512");
#endif
- puts(" KB enabled\n");
+ puts(" KiB enabled\n");
} else {
puts("Disabled\n");
}