media: dvb_ca_en50221: use usleep_range
Fixed all: WARNING: msleep < 20ms can sleep for up to 20ms by using usleep_range. Signed-off-by: Jasmin Jessich <jasmin@anw.at> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
5d023252cb
commit
b9af29e15a
@ -313,7 +313,7 @@ static int dvb_ca_en50221_wait_if_status(struct dvb_ca_private *ca, int slot,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* wait for a bit */
|
/* wait for a bit */
|
||||||
msleep(1);
|
usleep_range(1000, 1100);
|
||||||
}
|
}
|
||||||
|
|
||||||
dprintk("%s failed timeout:%lu\n", __func__, jiffies - start);
|
dprintk("%s failed timeout:%lu\n", __func__, jiffies - start);
|
||||||
@ -1489,7 +1489,7 @@ static ssize_t dvb_ca_en50221_io_write(struct file *file,
|
|||||||
if (status != -EAGAIN)
|
if (status != -EAGAIN)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
msleep(1);
|
usleep_range(1000, 1100);
|
||||||
}
|
}
|
||||||
if (!written) {
|
if (!written) {
|
||||||
status = -EIO;
|
status = -EIO;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user