Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-5.4
/
f6100bb4b849c45caa8d6b3706756d3b8a560c92
/
.
/
arch
/
arm
/
plat-mxc
/
cpu.c
blob: 386e0d52cf587a3ee08436b3c8576f6a5122b160 [
file
] [
log
] [
blame
]
Sascha Hauer
198016e
2009-02-06 15:38:22 +0100
[
diff
] [
blame
]
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