diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-12-12 15:31:37 +0800 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-12-12 15:34:48 +0800 |
commit | 1f53ef17d3ed6c34868cc8e7aa7c1d351c2fdc95 (patch) | |
tree | 1f26888dcdd55e44293124344c64a219b928958e /drivers/thermal | |
parent | d567c686aebc7140f73318ee250236bda39c04eb (diff) | |
download | linux-3.10-1f53ef17d3ed6c34868cc8e7aa7c1d351c2fdc95.tar.gz linux-3.10-1f53ef17d3ed6c34868cc8e7aa7c1d351c2fdc95.tar.bz2 linux-3.10-1f53ef17d3ed6c34868cc8e7aa7c1d351c2fdc95.zip |
Thermal: Fix DEFAULT_THERMAL_GOVERNOR
Fix DEFAULT_THERMAL_GOVERNOR to be consistant with the
default governor selected in kernel config file.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/step_wise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/step_wise.c b/drivers/thermal/step_wise.c index 1242cffed8b..0cd5e9fbab1 100644 --- a/drivers/thermal/step_wise.c +++ b/drivers/thermal/step_wise.c @@ -170,7 +170,7 @@ static int step_wise_throttle(struct thermal_zone_device *tz, int trip) } static struct thermal_governor thermal_gov_step_wise = { - .name = DEFAULT_THERMAL_GOVERNOR, + .name = "step_wise", .throttle = step_wise_throttle, .owner = THIS_MODULE, }; |