projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'amd-iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro...
[linux-2.6]
/
arch
/
arm
/
plat-mxc
/
cpu.c
1
2
#include <linux/module.h>
3
4
unsigned int __mxc_cpu_type;
5
EXPORT_SYMBOL(__mxc_cpu_type);
6
7
void mxc_set_cpu_type(unsigned int type)
8
{
9
__mxc_cpu_type = type;
10
}
11