sched,powerclamp: Convert to sched_set_fifo()
[sfrench/cifs-2.6.git] / drivers / thermal / intel / intel_powerclamp.c
index f74b2473440d26f6f51be525b1be09f556c020a0..b0eb5ece9243b2007002ed6beb5e76888348e049 100644 (file)
@@ -70,9 +70,6 @@ static unsigned int control_cpu; /* The cpu assigned to collect stat and update
                                  */
 static bool clamping;
 
-static const struct sched_param sparam = {
-       .sched_priority = MAX_USER_RT_PRIO / 2,
-};
 struct powerclamp_worker_data {
        struct kthread_worker *worker;
        struct kthread_work balancing_work;
@@ -488,7 +485,7 @@ static void start_power_clamp_worker(unsigned long cpu)
        w_data->cpu = cpu;
        w_data->clamping = true;
        set_bit(cpu, cpu_clamping_mask);
-       sched_setscheduler(worker->task, SCHED_FIFO, &sparam);
+       sched_set_fifo(worker->task);
        kthread_init_work(&w_data->balancing_work, clamp_balancing_func);
        kthread_init_delayed_work(&w_data->idle_injection_work,
                                  clamp_idle_injection_func);