projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59dcf97
)
ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.
author
Enric Balletbo i Serra
<eballetbo@iseebcn.com>
Fri, 15 Mar 2013 01:35:37 +0000
(
01:35
+0000)
committer
Tom Rini
<trini@ti.com>
Sun, 24 Mar 2013 16:49:10 +0000
(12:49 -0400)
Just fix a typo displaying the CPU info. With CONFIG_DISPLAY_INFO we see
something like AMAM335X-GP rev 0 instead of AM335X-GP rev 0.
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Reviewed-by: Javier Martinez Canillas <javier@dowhile0.org>
arch/arm/cpu/armv7/am33xx/sys_info.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/am33xx/sys_info.c
b/arch/arm/cpu/armv7/am33xx/sys_info.c
index 507b6180e62f1afc500bd11e1dd10c5730097414..db99e9535ff3379f29fcecf1f5c73e7361a3e6d4 100644
(file)
--- a/
arch/arm/cpu/armv7/am33xx/sys_info.c
+++ b/
arch/arm/cpu/armv7/am33xx/sys_info.c
@@
-120,7
+120,7
@@
int print_cpuinfo(void)
sec_s = "?";
}
- printf("
AM
%s-%s rev %d\n",
+ printf("%s-%s rev %d\n",
cpu_s, sec_s, get_cpu_rev());
/* TODO: Print ARM and DDR frequencies */