Commit cc1b2914913f644332a941a9a45b29ff2aad8c8d

Authored by Ye Li
1 parent 7afd553352

MLK-23574-41 imx: Remove "freescale" from CPU info

Since the freescale entity does not exist, remove it from CPU info print.

Signed-off-by: Ye Li <ye.li@nxp.com>

Showing 2 changed files with 3 additions and 3 deletions Side-by-side Diff

arch/arm/mach-imx/cpu.c
... ... @@ -196,7 +196,7 @@
196 196 struct udevice *thermal_dev;
197 197 int cpu_tmp, minc, maxc, ret;
198 198  
199   - printf("CPU: Freescale i.MX%s rev%d.%d",
  199 + printf("CPU: i.MX%s rev%d.%d",
200 200 get_imx_type((cpurev & 0x1FF000) >> 12),
201 201 (cpurev & 0x000F0) >> 4,
202 202 (cpurev & 0x0000F) >> 0);
... ... @@ -208,7 +208,7 @@
208 208 mxc_get_clock(MXC_ARM_CLK) / 1000000);
209 209 }
210 210 #else
211   - printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
  211 + printf("CPU: i.MX%s rev%d.%d at %d MHz\n",
212 212 get_imx_type((cpurev & 0x1FF000) >> 12),
213 213 (cpurev & 0x000F0) >> 4,
214 214 (cpurev & 0x0000F) >> 0,
arch/arm/mach-imx/mx7ulp/soc.c
... ... @@ -299,7 +299,7 @@
299 299  
300 300 cpurev = get_cpu_rev();
301 301  
302   - printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
  302 + printf("CPU: i.MX%s rev%d.%d at %d MHz\n",
303 303 get_imx_type((cpurev & 0xFF000) >> 12),
304 304 (cpurev & 0x000F0) >> 4, (cpurev & 0x0000F) >> 0,
305 305 mxc_get_clock(MXC_ARM_CLK) / 1000000);