mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 11:21:33 +00:00
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;
|
||
|
}
|
||
|
|