Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Adrian Bunk and committed by
Len Brown
83788c0c 4d8b4e1e

-4
-1
drivers/cpuidle/cpuidle.c
··· 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);
-3
drivers/cpuidle/governor.c
··· 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 ··· 136 138 mutex_unlock(&cpuidle_lock); 137 139 } 138 140 139 - EXPORT_SYMBOL_GPL(cpuidle_unregister_governor);