12 lines
159 B
C
12 lines
159 B
C
|
|
#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;
|
|
}
|
|
|