cpu.c 159 B

123456789101112
  1. #include <linux/module.h>
  2. unsigned int __mxc_cpu_type;
  3. EXPORT_SYMBOL(__mxc_cpu_type);
  4. void mxc_set_cpu_type(unsigned int type)
  5. {
  6. __mxc_cpu_type = type;
  7. }