summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2021-10-29 09:46:24 +0800
committerStefano Babic <sbabic@denx.de>2022-02-05 13:38:38 +0100
commit112b4cac9d9bd986a5c0e267193dff3e46bab68a (patch)
tree9b6e4315dc8932392f87cb54ddab3de61fccf735
parentbd8b673003078309341c81b6a059f3bdebd81c4b (diff)
imx8ulp: Remove freescale name from CPU revision
Remove the freescale vendor name from CPU revision print to align with other i.MX platforms Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r--arch/arm/mach-imx/imx8ulp/soc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/imx8ulp/soc.c b/arch/arm/mach-imx/imx8ulp/soc.c
index 2348132bf75..d9dca21e8c7 100644
--- a/arch/arm/mach-imx/imx8ulp/soc.c
+++ b/arch/arm/mach-imx/imx8ulp/soc.c
@@ -211,7 +211,7 @@ int print_cpuinfo(void)
cpurev = get_cpu_rev();
- printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
+ printf("CPU: i.MX%s rev%d.%d at %d MHz\n",
get_imx_type((cpurev & 0xFF000) >> 12),
(cpurev & 0x000F0) >> 4, (cpurev & 0x0000F) >> 0,
mxc_get_clock(MXC_ARM_CLK) / 1000000);