aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2012-12-12 02:31:37 -0500
committerZhang Rui <rui.zhang@intel.com>2012-12-12 02:34:48 -0500
commit1f53ef17d3ed6c34868cc8e7aa7c1d351c2fdc95 (patch)
tree1f26888dcdd55e44293124344c64a219b928958e /drivers/thermal
parentd567c686aebc7140f73318ee250236bda39c04eb (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/step_wise.c b/drivers/thermal/step_wise.c
index 1242cffed8b0..0cd5e9fbab1c 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)
170} 170}
171 171
172static struct thermal_governor thermal_gov_step_wise = { 172static struct thermal_governor thermal_gov_step_wise = {
173 .name = DEFAULT_THERMAL_GOVERNOR, 173 .name = "step_wise",
174 .throttle = step_wise_throttle, 174 .throttle = step_wise_throttle,
175 .owner = THIS_MODULE, 175 .owner = THIS_MODULE,
176}; 176};