Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git] / arch / arm / plat-mxc / cpu.c
blobf5b7e0fa237fba3686afb83b90aa4ff3eb18585c
2 #include <linux/module.h>
3 #include <mach/hardware.h>
5 unsigned int __mxc_cpu_type;
6 EXPORT_SYMBOL(__mxc_cpu_type);
8 void mxc_set_cpu_type(unsigned int type)
10 __mxc_cpu_type = type;
13 void imx_print_silicon_rev(const char *cpu, int srev)
15 if (srev == IMX_CHIP_REVISION_UNKNOWN)
16 pr_info("CPU identified as %s, unknown revision\n", cpu);
17 else
18 pr_info("CPU identified as %s, silicon rev %d.%d\n",
19 cpu, (srev >> 4) & 0xf, srev & 0xf);