cpuidle: remove unused exports
authorAdrian Bunk <bunk@kernel.org>
Mon, 29 Oct 2007 12:49:13 +0000 (13:49 +0100)
committerLen Brown <len.brown@intel.com>
Mon, 29 Oct 2007 21:27:50 +0000 (17:27 -0400)
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>
drivers/cpuidle/cpuidle.c
drivers/cpuidle/governor.c

index fdf4106b817bfc0501c6b1a0d88751f4f6ee2a08..d2fabe7863a96345e096f5a644c111436a492819 100644 (file)
@@ -19,7 +19,6 @@
 #include "cpuidle.h"
 
 DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
-EXPORT_PER_CPU_SYMBOL_GPL(cpuidle_devices);
 
 DEFINE_MUTEX(cpuidle_lock);
 LIST_HEAD(cpuidle_detected_devices);
index bb699cb2dc5ae1915a4ae0d70f2f45393a816202..70b59642a7087a7593fffdfd9158ddfe4ba619b5 100644 (file)
@@ -94,8 +94,6 @@ int cpuidle_register_governor(struct cpuidle_governor *gov)
        return ret;
 }
 
-EXPORT_SYMBOL_GPL(cpuidle_register_governor);
-
 /**
  * cpuidle_replace_governor - find a replacement governor
  * @exclude_rating: the rating that will be skipped while looking for
@@ -138,4 +136,3 @@ void cpuidle_unregister_governor(struct cpuidle_governor *gov)
        mutex_unlock(&cpuidle_lock);
 }
 
-EXPORT_SYMBOL_GPL(cpuidle_unregister_governor);