forked from luck/tmp_suning_uos_patched
media: Use ktime_set() in pt1.c
In commit 20a63349b1
a new variable ktime_t delay has been added.
We decided to use the API functions to initialize ktime_t variables
within media-tree. Thus variable delay needs to be initialized with
ktime_set() instead of setting it directly.
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
06af462ba1
commit
b3bc535a5c
|
@ -485,7 +485,7 @@ static int pt1_thread(void *data)
|
|||
if (!pt1_filter(pt1, page)) {
|
||||
ktime_t delay;
|
||||
|
||||
delay = PT1_FETCH_DELAY * NSEC_PER_MSEC;
|
||||
delay = ktime_set(0, PT1_FETCH_DELAY * NSEC_PER_MSEC);
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
schedule_hrtimeout_range(&delay,
|
||||
PT1_FETCH_DELAY_DELTA * NSEC_PER_MSEC,
|
||||
|
|
Loading…
Reference in New Issue
Block a user