]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Minor alignment of output
authorWolfgang Denk <wd@denx.de>
Sun, 12 Aug 2007 18:35:49 +0000 (20:35 +0200)
committerWolfgang Denk <wd@denx.de>
Sun, 12 Aug 2007 18:35:49 +0000 (20:35 +0200)
Signed-off-by: Wolfgang Denk <wd@denx.de>
cpu/mpc512x/cpu.c
cpu/nios/cpu.c

index 3be565ad034a457576478a76e4ed3967ba2077cf..3f2e3ad3c00976de5d75c9adbdbb16075d36a8e2 100644 (file)
@@ -42,7 +42,7 @@ int checkcpu (void)
        u32 spridr = immr->sysconf.spridr;
        char buf[32];
 
-       puts("CPU: ");
+       puts("CPU:  ");
 
        switch (spridr & 0xffff0000) {
        case SPR_5121E:
index d2bb2c09d1d244809a83bf9a8c101fc3f549c368..51f42461a3c7c42f91bca9a1e4ebcb13fa862e54 100644 (file)
@@ -34,7 +34,7 @@ int checkcpu (void)
 
        /* Get cpu version info */
        val = rdctl (CTL_CPU_ID);
-       printf ("CPU: ");
+       printf ("CPU:  ");
        printf ("%s", (val & 0x00008000) ? "Nios-16 " : "Nios-32 ");
        rev_major = (val>>12) & 0x07;
        rev_minor = (val>>4) & 0x0ff;