This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/media_tree.git tree:

Subject: [media] tda10071: change sleeps to more suitable ones
Author:  Antti Palosaari <[email protected]>
Date:    Tue Sep 13 11:51:23 2011 -0300

msleep() => usleep_range()

Signed-off-by: Antti Palosaari <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/dvb/frontends/tda10071.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=d102b739f3a352425fcdb39afbf898f8bdbd2bc3

diff --git a/drivers/media/dvb/frontends/tda10071.c 
b/drivers/media/dvb/frontends/tda10071.c
index 352ddc6..0c37434 100644
--- a/drivers/media/dvb/frontends/tda10071.c
+++ b/drivers/media/dvb/frontends/tda10071.c
@@ -167,7 +167,7 @@ static int tda10071_cmd_execute(struct tda10071_priv *priv,
                if (ret)
                        goto error;
 
-               msleep(1);
+               usleep_range(200, 5000);
        }
 
        dbg("%s: loop=%d", __func__, i);
@@ -298,7 +298,7 @@ static int tda10071_diseqc_send_master_cmd(struct 
dvb_frontend *fe,
                if (ret)
                        goto error;
 
-               msleep(10);
+               usleep_range(10000, 20000);
        }
 
        dbg("%s: loop=%d", __func__, i);
@@ -352,7 +352,7 @@ static int tda10071_diseqc_recv_slave_reply(struct 
dvb_frontend *fe,
                if (ret)
                        goto error;
 
-               msleep(10);
+               usleep_range(10000, 20000);
        }
 
        dbg("%s: loop=%d", __func__, i);
@@ -423,7 +423,7 @@ static int tda10071_diseqc_send_burst(struct dvb_frontend 
*fe,
                if (ret)
                        goto error;
 
-               msleep(10);
+               usleep_range(10000, 20000);
        }
 
        dbg("%s: loop=%d", __func__, i);

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to