Commit d102b739 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] tda10071: change sleeps to more suitable ones

msleep() => usleep_range()
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 75d404ec
...@@ -167,7 +167,7 @@ static int tda10071_cmd_execute(struct tda10071_priv *priv, ...@@ -167,7 +167,7 @@ static int tda10071_cmd_execute(struct tda10071_priv *priv,
if (ret) if (ret)
goto error; goto error;
msleep(1); usleep_range(200, 5000);
} }
dbg("%s: loop=%d", __func__, i); dbg("%s: loop=%d", __func__, i);
...@@ -298,7 +298,7 @@ static int tda10071_diseqc_send_master_cmd(struct dvb_frontend *fe, ...@@ -298,7 +298,7 @@ static int tda10071_diseqc_send_master_cmd(struct dvb_frontend *fe,
if (ret) if (ret)
goto error; goto error;
msleep(10); usleep_range(10000, 20000);
} }
dbg("%s: loop=%d", __func__, i); dbg("%s: loop=%d", __func__, i);
...@@ -352,7 +352,7 @@ static int tda10071_diseqc_recv_slave_reply(struct dvb_frontend *fe, ...@@ -352,7 +352,7 @@ static int tda10071_diseqc_recv_slave_reply(struct dvb_frontend *fe,
if (ret) if (ret)
goto error; goto error;
msleep(10); usleep_range(10000, 20000);
} }
dbg("%s: loop=%d", __func__, i); dbg("%s: loop=%d", __func__, i);
...@@ -423,7 +423,7 @@ static int tda10071_diseqc_send_burst(struct dvb_frontend *fe, ...@@ -423,7 +423,7 @@ static int tda10071_diseqc_send_burst(struct dvb_frontend *fe,
if (ret) if (ret)
goto error; goto error;
msleep(10); usleep_range(10000, 20000);
} }
dbg("%s: loop=%d", __func__, i); dbg("%s: loop=%d", __func__, i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment