diff options
author | Hans Petter Selasky <hselasky@c2i.net> | 2011-05-23 14:21:47 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-09-25 11:44:10 (GMT) |
commit | aad04c774331890befcd7a77406c2b6f273ab7a9 (patch) | |
tree | 75589698af664000f5997802ad884f65efe5e580 | |
parent | 79d06d4dff733ee472e1f8933a33317a18195c0c (diff) | |
download | linux-aad04c774331890befcd7a77406c2b6f273ab7a9.tar.xz |
[media] Increase a timeout, so that bad scheduling does not accidentially cause a timeout
--HPS
>From 18faaafc9cbbe478bb49023bbeae490149048560 Mon Sep 17 00:00:00 2001
Signed-off-by: Hans Petter Selasky <hselasky@c2i.net>
Acked-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/frontends/stb0899_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_drv.c b/drivers/media/dvb/frontends/stb0899_drv.c index 7691282..8408ef8 100644 --- a/drivers/media/dvb/frontends/stb0899_drv.c +++ b/drivers/media/dvb/frontends/stb0899_drv.c @@ -706,7 +706,7 @@ static int stb0899_send_diseqc_msg(struct dvb_frontend *fe, struct dvb_diseqc_ma stb0899_write_reg(state, STB0899_DISCNTRL1, reg); for (i = 0; i < cmd->msg_len; i++) { /* wait for FIFO empty */ - if (stb0899_wait_diseqc_fifo_empty(state, 10) < 0) + if (stb0899_wait_diseqc_fifo_empty(state, 100) < 0) return -ETIMEDOUT; stb0899_write_reg(state, STB0899_DISFIFO, cmd->msg[i]); |