diff options
author | Wolfgang Denk <wd@denx.de> | 2007-08-12 20:35:49 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-08-12 20:35:49 +0200 |
commit | 6b309f22a724fad8418e811751a0741b893419cf (patch) | |
tree | c3ede2ca15800e674fef5fac0c7d26b33f94949e /cpu/nios | |
parent | 6f6d7b9c8559e241e8d232621542b8b59699b07b (diff) | |
download | u-boot-imx-6b309f22a724fad8418e811751a0741b893419cf.zip u-boot-imx-6b309f22a724fad8418e811751a0741b893419cf.tar.gz u-boot-imx-6b309f22a724fad8418e811751a0741b893419cf.tar.bz2 |
Minor alignment of output
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'cpu/nios')
-rw-r--r-- | cpu/nios/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/nios/cpu.c b/cpu/nios/cpu.c index d2bb2c0..51f4246 100644 --- a/cpu/nios/cpu.c +++ b/cpu/nios/cpu.c @@ -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; |