diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-29 18:23:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-29 18:23:30 -0800 |
commit | cac9283ca3dc7f4404b4034c6f06a3076c033b04 (patch) | |
tree | e419dceb86e30877f0ad04847201a5f99680ba96 /arch/x86/platform/intel-mid/mfld.c | |
parent | cca21640d217f2a421ef63e7045381dc2b9a8afc (diff) | |
parent | 790ed7421a973d9773dda8b4e5300c3f7f6fbcf7 (diff) | |
download | blackbird-op-linux-cac9283ca3dc7f4404b4034c6f06a3076c033b04.tar.gz blackbird-op-linux-cac9283ca3dc7f4404b4034c6f06a3076c033b04.zip |
Merge branch 'x86-intel-mid-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull intel MID cleanups from Peter Anvin:
"Miscellaneous cleanups to the intel-mid code merged earlier in this
merge window"
* 'x86-intel-mid-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86, intel-mid: Cleanup some platform code's header files
x86, intel-mid: Add missing 'void' to functions without arguments
x86: Don't add new __cpuinit users to Merrifield platform code
x86: Don't introduce more __cpuinit users in intel_mid_weak_decls.h
Diffstat (limited to 'arch/x86/platform/intel-mid/mfld.c')
-rw-r--r-- | arch/x86/platform/intel-mid/mfld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/platform/intel-mid/mfld.c b/arch/x86/platform/intel-mid/mfld.c index 4f7884eebc14..23381d2174ae 100644 --- a/arch/x86/platform/intel-mid/mfld.c +++ b/arch/x86/platform/intel-mid/mfld.c @@ -58,18 +58,18 @@ static unsigned long __init mfld_calibrate_tsc(void) return 0; } -static void __init penwell_arch_setup() +static void __init penwell_arch_setup(void) { x86_platform.calibrate_tsc = mfld_calibrate_tsc; pm_power_off = mfld_power_off; } -void * __cpuinit get_penwell_ops() +void *get_penwell_ops(void) { return &penwell_ops; } -void * __cpuinit get_cloverview_ops() +void *get_cloverview_ops(void) { return &penwell_ops; } |