aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/cpufreq_ondemand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c
index 5ca2fd5d1ed1..bf8aa45d4f01 100644
--- a/drivers/cpufreq/cpufreq_ondemand.c
+++ b/drivers/cpufreq/cpufreq_ondemand.c
@@ -449,7 +449,7 @@ static inline void dbs_timer_init(unsigned int cpu)
449 delay -= jiffies % delay; 449 delay -= jiffies % delay;
450 450
451 ondemand_powersave_bias_init(); 451 ondemand_powersave_bias_init();
452 INIT_WORK(&dbs_info->work, do_dbs_timer, 0); 452 INIT_WORK(&dbs_info->work, do_dbs_timer, NULL);
453 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay); 453 queue_delayed_work_on(cpu, kondemand_wq, &dbs_info->work, delay);
454} 454}
455 455