diff options
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-fb.c')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-fb.c b/drivers/media/video/ivtv/ivtv-fb.c index 55265bd5c250..6f5da57299a1 100644 --- a/drivers/media/video/ivtv/ivtv-fb.c +++ b/drivers/media/video/ivtv/ivtv-fb.c | |||
@@ -420,7 +420,7 @@ static int ivtvfb_ioctl(struct fb_info *info, unsigned int cmd, unsigned long ar | |||
420 | 420 | ||
421 | case FBIO_WAITFORVSYNC: | 421 | case FBIO_WAITFORVSYNC: |
422 | prepare_to_wait(&itv->vsync_waitq, &wait, TASK_INTERRUPTIBLE); | 422 | prepare_to_wait(&itv->vsync_waitq, &wait, TASK_INTERRUPTIBLE); |
423 | if (!schedule_timeout(HZ/20)) rc = -ETIMEDOUT; | 423 | if (!schedule_timeout(msecs_to_jiffies(50))) rc = -ETIMEDOUT; |
424 | finish_wait(&itv->vsync_waitq, &wait); | 424 | finish_wait(&itv->vsync_waitq, &wait); |
425 | return rc; | 425 | return rc; |
426 | 426 | ||