Commit 83788c0caed3a425f64fa88fde7c78746b9cdd76

Authored by Adrian Bunk
Committed by Len Brown
1 parent 4d8b4e1e02

cpuidle: remove unused exports

This patch removes the following unused exports:
- cpuidle_devices
- cpuidle_register_governor
- cpuidle_unregister_governor

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Len Brown <len.brown@intel.com>

Showing 2 changed files with 0 additions and 4 deletions Side-by-side Diff

drivers/cpuidle/cpuidle.c
... ... @@ -19,7 +19,6 @@
19 19 #include "cpuidle.h"
20 20  
21 21 DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
22   -EXPORT_PER_CPU_SYMBOL_GPL(cpuidle_devices);
23 22  
24 23 DEFINE_MUTEX(cpuidle_lock);
25 24 LIST_HEAD(cpuidle_detected_devices);
drivers/cpuidle/governor.c
... ... @@ -94,8 +94,6 @@
94 94 return ret;
95 95 }
96 96  
97   -EXPORT_SYMBOL_GPL(cpuidle_register_governor);
98   -
99 97 /**
100 98 * cpuidle_replace_governor - find a replacement governor
101 99 * @exclude_rating: the rating that will be skipped while looking for
... ... @@ -137,6 +135,4 @@
137 135 list_del(&gov->governor_list);
138 136 mutex_unlock(&cpuidle_lock);
139 137 }
140   -
141   -EXPORT_SYMBOL_GPL(cpuidle_unregister_governor);