diff options
| author | Thomas Renninger <trenn@suse.de> | 2012-01-17 16:40:08 -0500 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2012-01-17 23:59:12 -0500 |
| commit | 65b7f839ceecc0a36c7969c0c9151d5748cd4242 (patch) | |
| tree | fd98dd21fafcbeec668bbc2e61812b65bee7919e /include/linux | |
| parent | 3bd81a8710710f8bf5d1a5ebac315c842c20bdd3 (diff) | |
intel_idle: Split up and provide per CPU initialization func
Function split up, should have no functional change.
Provides entry point for physically hotplugged CPUs
to initialize and activate cpuidle.
Signed-off-by: Thomas Renninger <trenn@suse.de>
CC: Deepthi Dharwar <deepthi@linux.vnet.ibm.com>
CC: Shaohua Li <shaohua.li@intel.com>
CC: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/cpuidle.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index 7408af843b8a..93df66ea794a 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -188,7 +188,14 @@ struct cpuidle_governor { | |||
| 188 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); | 188 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); |
| 189 | extern void cpuidle_unregister_governor(struct cpuidle_governor *gov); | 189 | extern void cpuidle_unregister_governor(struct cpuidle_governor *gov); |
| 190 | 190 | ||
| 191 | #ifdef CONFIG_INTEL_IDLE | ||
| 192 | extern int intel_idle_cpu_init(int cpu); | ||
| 191 | #else | 193 | #else |
| 194 | static inline int intel_idle_cpu_init(int cpu) { return -1; } | ||
| 195 | #endif | ||
| 196 | |||
| 197 | #else | ||
| 198 | static inline int intel_idle_cpu_init(int cpu) { return -1; } | ||
| 192 | 199 | ||
| 193 | static inline int cpuidle_register_governor(struct cpuidle_governor *gov) | 200 | static inline int cpuidle_register_governor(struct cpuidle_governor *gov) |
| 194 | {return 0;} | 201 | {return 0;} |
