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:
026381f
)
imx8: cpu: correct info
author
Peng Fan
<peng.fan@nxp.com>
Sat, 15 Dec 2018 12:19:55 +0000
(12:19 +0000)
committer
Stefano Babic
<sbabic@denx.de>
Wed, 9 Jan 2019 16:04:17 +0000
(17:04 +0100)
The CPU banner printed is as following:
CPU: CPU: Freescale i.MX8QXP RevB A35 at 147228 MHz
1. Drop the CPU:
2. Change vendor from Freescale to NXP
Signed-off-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/imx8/cpu.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-imx/imx8/cpu.c
b/arch/arm/mach-imx/imx8/cpu.c
index f093f34ca59c3919216a3ad3d4d83a06d1eac0e0..7599afe720327015db51b9d0be88b8cfd7c0577c 100644
(file)
--- a/
arch/arm/mach-imx/imx8/cpu.c
+++ b/
arch/arm/mach-imx/imx8/cpu.c
@@
-573,7
+573,7
@@
int cpu_imx_get_desc(struct udevice *dev, char *buf, int size)
if (size < 100)
return -ENOSPC;
- snprintf(buf, size, "
CPU: Freescale
i.MX8%s Rev%s %s at %u MHz\n",
+ snprintf(buf, size, "
NXP
i.MX8%s Rev%s %s at %u MHz\n",
plat->type, plat->rev, plat->name, plat->freq_mhz);
return 0;