Merge branch 'next' of git://github.com/kernelslacker/cpufreq
[pandora-kernel.git] / arch / arm / plat-mxc / cpu.c
1
2 #include <linux/module.h>
3 #include <mach/hardware.h>
4
5 unsigned int __mxc_cpu_type;
6 EXPORT_SYMBOL(__mxc_cpu_type);
7
8 void mxc_set_cpu_type(unsigned int type)
9 {
10         __mxc_cpu_type = type;
11 }
12
13 void imx_print_silicon_rev(const char *cpu, int srev)
14 {
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);
20 }