Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c130bdba authored by Satoru Takeuchi's avatar Satoru Takeuchi Committed by Dmitry Torokhov
Browse files

Input: ucb1400_ts - use sched_setscheduler()



Fix Philips UCB1400 driver to use sched_setscheduler() instead of setting
the fields of task_struct directly.

Signed-off-by: default avatarSatoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 1e0c5b12
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -288,9 +288,9 @@ static int ucb1400_ts_thread(void *_ucb)
	struct ucb1400 *ucb = _ucb;
	struct task_struct *tsk = current;
	int valid = 0;
	struct sched_param param = { .sched_priority = 1 };

	tsk->policy = SCHED_FIFO;
	tsk->rt_priority = 1;
	sched_setscheduler(tsk, SCHED_FIFO, &param);

	while (!kthread_should_stop()) {
		unsigned int x, y, p;