diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/cpuidle.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index fc3e5808b7ff..79e38114e5f4 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
@@ -105,8 +105,6 @@ struct cpuidle_driver { | |||
105 | struct module *owner; | 105 | struct module *owner; |
106 | int refcnt; | 106 | int refcnt; |
107 | 107 | ||
108 | /* set to 1 to use the core cpuidle time keeping (for all states). */ | ||
109 | unsigned int en_core_tk_irqen:1; | ||
110 | /* used by the cpuidle framework to setup the broadcast timer */ | 108 | /* used by the cpuidle framework to setup the broadcast timer */ |
111 | unsigned int bctimer:1; | 109 | unsigned int bctimer:1; |
112 | /* states array must be ordered in decreasing power consumption */ | 110 | /* states array must be ordered in decreasing power consumption */ |
@@ -132,10 +130,6 @@ extern void cpuidle_pause(void); | |||
132 | extern void cpuidle_resume(void); | 130 | extern void cpuidle_resume(void); |
133 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | 131 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
134 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | 132 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
135 | extern int cpuidle_wrap_enter(struct cpuidle_device *dev, | ||
136 | struct cpuidle_driver *drv, int index, | ||
137 | int (*enter)(struct cpuidle_device *dev, | ||
138 | struct cpuidle_driver *drv, int index)); | ||
139 | extern int cpuidle_play_dead(void); | 133 | extern int cpuidle_play_dead(void); |
140 | 134 | ||
141 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); | 135 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
@@ -162,11 +156,6 @@ static inline void cpuidle_resume(void) { } | |||
162 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) | 156 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) |
163 | {return -ENODEV; } | 157 | {return -ENODEV; } |
164 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 158 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
165 | static inline int cpuidle_wrap_enter(struct cpuidle_device *dev, | ||
166 | struct cpuidle_driver *drv, int index, | ||
167 | int (*enter)(struct cpuidle_device *dev, | ||
168 | struct cpuidle_driver *drv, int index)) | ||
169 | { return -ENODEV; } | ||
170 | static inline int cpuidle_play_dead(void) {return -ENODEV; } | 159 | static inline int cpuidle_play_dead(void) {return -ENODEV; } |
171 | #endif | 160 | #endif |
172 | 161 | ||