Because SCHED_FIFO is a broken scheduler model (see previous patches)
take away the priority field, the kernel can't possibly make an
informed decision.
Effectively no change.
Cc: daniel.lezcano@linaro.org
Cc: rafael.j.wysocki@intel.com
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Ingo Molnar <mingo@kernel.org>
  */
 static void idle_inject_setup(unsigned int cpu)
 {
-       struct sched_param param = { .sched_priority = MAX_USER_RT_PRIO / 2 };
-
-       sched_setscheduler(current, SCHED_FIFO, ¶m);
+       sched_set_fifo(current);
 }
 
 /**