diff options
Diffstat (limited to 'arch/x86/platform/intel-mid/mfld.c')
-rw-r--r-- | arch/x86/platform/intel-mid/mfld.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/arch/x86/platform/intel-mid/mfld.c b/arch/x86/platform/intel-mid/mfld.c index e793fe509971..e42978d4deaf 100644 --- a/arch/x86/platform/intel-mid/mfld.c +++ b/arch/x86/platform/intel-mid/mfld.c | |||
@@ -17,16 +17,6 @@ | |||
17 | 17 | ||
18 | #include "intel_mid_weak_decls.h" | 18 | #include "intel_mid_weak_decls.h" |
19 | 19 | ||
20 | static void penwell_arch_setup(void); | ||
21 | /* penwell arch ops */ | ||
22 | static struct intel_mid_ops penwell_ops = { | ||
23 | .arch_setup = penwell_arch_setup, | ||
24 | }; | ||
25 | |||
26 | static void mfld_power_off(void) | ||
27 | { | ||
28 | } | ||
29 | |||
30 | static unsigned long __init mfld_calibrate_tsc(void) | 20 | static unsigned long __init mfld_calibrate_tsc(void) |
31 | { | 21 | { |
32 | unsigned long fast_calibrate; | 22 | unsigned long fast_calibrate; |
@@ -63,9 +53,12 @@ static unsigned long __init mfld_calibrate_tsc(void) | |||
63 | static void __init penwell_arch_setup(void) | 53 | static void __init penwell_arch_setup(void) |
64 | { | 54 | { |
65 | x86_platform.calibrate_tsc = mfld_calibrate_tsc; | 55 | x86_platform.calibrate_tsc = mfld_calibrate_tsc; |
66 | pm_power_off = mfld_power_off; | ||
67 | } | 56 | } |
68 | 57 | ||
58 | static struct intel_mid_ops penwell_ops = { | ||
59 | .arch_setup = penwell_arch_setup, | ||
60 | }; | ||
61 | |||
69 | void *get_penwell_ops(void) | 62 | void *get_penwell_ops(void) |
70 | { | 63 | { |
71 | return &penwell_ops; | 64 | return &penwell_ops; |