Commit 83788c0c authored by Adrian Bunk's avatar Adrian Bunk Committed by Len Brown

cpuidle: remove unused exports

This patch removes the following unused exports:
- cpuidle_devices
- cpuidle_register_governor
- cpuidle_unregister_governor
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 4d8b4e1e
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include "cpuidle.h" #include "cpuidle.h"
DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices); DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
EXPORT_PER_CPU_SYMBOL_GPL(cpuidle_devices);
DEFINE_MUTEX(cpuidle_lock); DEFINE_MUTEX(cpuidle_lock);
LIST_HEAD(cpuidle_detected_devices); LIST_HEAD(cpuidle_detected_devices);
......
...@@ -94,8 +94,6 @@ int cpuidle_register_governor(struct cpuidle_governor *gov) ...@@ -94,8 +94,6 @@ int cpuidle_register_governor(struct cpuidle_governor *gov)
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(cpuidle_register_governor);
/** /**
* cpuidle_replace_governor - find a replacement governor * cpuidle_replace_governor - find a replacement governor
* @exclude_rating: the rating that will be skipped while looking for * @exclude_rating: the rating that will be skipped while looking for
...@@ -138,4 +136,3 @@ void cpuidle_unregister_governor(struct cpuidle_governor *gov) ...@@ -138,4 +136,3 @@ void cpuidle_unregister_governor(struct cpuidle_governor *gov)
mutex_unlock(&cpuidle_lock); mutex_unlock(&cpuidle_lock);
} }
EXPORT_SYMBOL_GPL(cpuidle_unregister_governor);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment