blob: 386e0d52cf587a3ee08436b3c8576f6a5122b160 [file] [log] [blame]
Sascha Hauer198016e2009-02-06 15:38:22 +01001
2#include <linux/module.h>
3
4unsigned int __mxc_cpu_type;
5EXPORT_SYMBOL(__mxc_cpu_type);
6
7void mxc_set_cpu_type(unsigned int type)
8{
9 __mxc_cpu_type = type;
10}
11