imx8ulp: Remove freescale name from CPU revision
authorYe Li <ye.li@nxp.com>
Fri, 29 Oct 2021 01:46:24 +0000 (09:46 +0800)
committerStefano Babic <sbabic@denx.de>
Sat, 5 Feb 2022 12:38:38 +0000 (13:38 +0100)
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>
arch/arm/mach-imx/imx8ulp/soc.c

index 2348132..d9dca21 100644 (file)
@@ -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);