Skip to content

Commit

Permalink
cpuidle: remove unused exports
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
AdrianBunk authored and lenb committed Oct 29, 2007
1 parent 4d8b4e1 commit 83788c0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion drivers/cpuidle/cpuidle.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 0 additions & 3 deletions drivers/cpuidle/governor.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -138,4 +136,3 @@ void cpuidle_unregister_governor(struct cpuidle_governor *gov)
mutex_unlock(&cpuidle_lock);
}

EXPORT_SYMBOL_GPL(cpuidle_unregister_governor);

0 comments on commit 83788c0

Please sign in to comment.