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: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
1e0c5b1275
commit
c130bdba58
@@ -288,9 +288,9 @@ static int ucb1400_ts_thread(void *_ucb)
|
|||||||
struct ucb1400 *ucb = _ucb;
|
struct ucb1400 *ucb = _ucb;
|
||||||
struct task_struct *tsk = current;
|
struct task_struct *tsk = current;
|
||||||
int valid = 0;
|
int valid = 0;
|
||||||
|
struct sched_param param = { .sched_priority = 1 };
|
||||||
|
|
||||||
tsk->policy = SCHED_FIFO;
|
sched_setscheduler(tsk, SCHED_FIFO, ¶m);
|
||||||
tsk->rt_priority = 1;
|
|
||||||
|
|
||||||
while (!kthread_should_stop()) {
|
while (!kthread_should_stop()) {
|
||||||
unsigned int x, y, p;
|
unsigned int x, y, p;
|
||||||
|
Reference in New Issue
Block a user