mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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>
This commit is contained in:
parent
f545d300b0
commit
9a511bd6a3
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue