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