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

Subject: V4L/DVB: gspca - gl860: USB control message delay unification
Author:  Olivier Lorin <[email protected]>
Date:    Thu Jun 24 04:26:20 2010 -0300

- 1 ms "msleep" applied to each sensor after USB control data exchange
  This was done for two sensors because these exchanges were known to
  be too quick depending on laptop model.
  It is fairly logical to apply this delay to each sensor
  in order to prevent from having errors with untested hardwares.

Signed-off-by: Olivier Lorin <[email protected]>
Signed-off-by: Jean-François Moine <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/video/gspca/gl860/gl860.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/v4l-dvb.git?a=commitdiff;h=76683f4e1cf2441672ed131b7ea5d2ce9a2b98d4

diff --git a/drivers/media/video/gspca/gl860/gl860.c 
b/drivers/media/video/gspca/gl860/gl860.c
index 8f15a58..b59c482 100644
--- a/drivers/media/video/gspca/gl860/gl860.c
+++ b/drivers/media/video/gspca/gl860/gl860.c
@@ -595,10 +595,7 @@ int gl860_RTx(struct gspca_dev *gspca_dev,
        else if (len > 1 && r < len)
                PDEBUG(D_ERR, "short ctrl transfer %d/%d", r, len);
 
-       if (_MI2020_ && (val || index))
-               msleep(1);
-       if (_OV2640_)
-               msleep(1);
+       msleep(1);
 
        return r;
 }

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

Reply via email to