Skip to content

Commit

Permalink
Input: ucb1400_ts - use sched_setscheduler()
Browse files Browse the repository at this point in the history
Fix Philips UCB1400 driver to use sched_setscheduler() instead of setting
the fields of task_struct directly.

Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
  • Loading branch information
Satoru Takeuchi authored and Dmitry Torokhov committed May 23, 2007
1 parent 1e0c5b1 commit c130bdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/input/touchscreen/ucb1400_ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c130bdb

Please sign in to comment.