diff options
author | Zhang Rui <rui.zhang@intel.com> | 2013-04-15 09:26:58 +0800 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-04-15 09:26:58 +0800 |
commit | d13cb03aef0c062dcdd16b411bd4c02c1574ff08 (patch) | |
tree | 0ee1d535ddf0ca49cd88484f042d12996f689e1c /drivers/thermal/user_space.c | |
parent | 2fd1db8819fbf73b5f74b4b4a205ab7be0957944 (diff) | |
parent | bbf7fc88c78f7317e2cdcf77e974c8a9a8312641 (diff) |
Merge branch 'thermal' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux into next
Conflicts:
drivers/thermal/cpu_cooling.c
Diffstat (limited to 'drivers/thermal/user_space.c')
-rw-r--r-- | drivers/thermal/user_space.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/drivers/thermal/user_space.c b/drivers/thermal/user_space.c index 6bbb380b6d1..10adcddc882 100644 --- a/drivers/thermal/user_space.c +++ b/drivers/thermal/user_space.c @@ -22,9 +22,6 @@ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - -#include <linux/module.h> #include <linux/thermal.h> #include "thermal_core.h" @@ -46,23 +43,15 @@ static int notify_user_space(struct thermal_zone_device *tz, int trip) static struct thermal_governor thermal_gov_user_space = { .name = "user_space", .throttle = notify_user_space, - .owner = THIS_MODULE, }; -static int __init thermal_gov_user_space_init(void) +int thermal_gov_user_space_register(void) { return thermal_register_governor(&thermal_gov_user_space); } -static void __exit thermal_gov_user_space_exit(void) +void thermal_gov_user_space_unregister(void) { thermal_unregister_governor(&thermal_gov_user_space); } -/* This should load after thermal framework */ -fs_initcall(thermal_gov_user_space_init); -module_exit(thermal_gov_user_space_exit); - -MODULE_AUTHOR("Durgadoss R"); -MODULE_DESCRIPTION("A user space Thermal notifier"); -MODULE_LICENSE("GPL"); |