diff options
author | Scott Wood <scottwood@freescale.com> | 2012-10-29 19:00:41 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2012-11-26 15:41:20 -0600 |
commit | 9a511bd6a372936e5f22031de1b4b13ae50212dc (patch) | |
tree | abe49f5cb0ddf452ee259f06edd0b027843c470a /arch/powerpc/cpu/mpc85xx | |
parent | f545d300b0b5d08310dfca43a3021b94b7722cfe (diff) | |
download | u-boot-imx-9a511bd6a372936e5f22031de1b4b13ae50212dc.zip u-boot-imx-9a511bd6a372936e5f22031de1b4b13ae50212dc.tar.gz u-boot-imx-9a511bd6a372936e5f22031de1b4b13ae50212dc.tar.bz2 |
powerpc/mpc85xx: add comma before "already enabled"
Now outputs like this:
L2: 512 KB already enabled, moving to 0xf8f80000
rather than this:
L2: 512 KB already enabledmoving to 0xf8f80000
Signed-off-by: Scott Wood <scottwood@freescale.com>
Cc: Andy Fleming <afleming@gmail.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index f01804b..705c16c 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -470,7 +470,7 @@ int cpu_init_r(void) && l2srbar >= CONFIG_SYS_FLASH_BASE) { l2srbar = CONFIG_SYS_INIT_L2_ADDR; l2cache->l2srbar0 = l2srbar; - printf("moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR); + printf(", moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR); } #endif /* CONFIG_SYS_INIT_L2_ADDR */ puts("\n"); |