File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -530,8 +530,7 @@ static inline void queue_gpstate_timer(struct global_pstate_info *gpstates)
530
530
else
531
531
timer_interval = GPSTATE_TIMER_INTERVAL ;
532
532
533
- mod_timer_pinned (& gpstates -> timer , jiffies +
534
- msecs_to_jiffies (timer_interval ));
533
+ mod_timer (& gpstates -> timer , jiffies + msecs_to_jiffies (timer_interval ));
535
534
}
536
535
537
536
/**
@@ -699,7 +698,7 @@ static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
699
698
policy -> driver_data = gpstates ;
700
699
701
700
/* initialize timer */
702
- init_timer_deferrable (& gpstates -> timer );
701
+ init_timer_pinned_deferrable (& gpstates -> timer );
703
702
gpstates -> timer .data = (unsigned long )policy ;
704
703
gpstates -> timer .function = gpstate_timer_handler ;
705
704
gpstates -> timer .expires = jiffies +
You can’t perform that action at this time.
0 commit comments