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 - ov534: Fix unsetting hflip and vflip bits
Author:  Max Thrun <bear2...@gmail.com>
Date:    Sat Feb 27 17:20:25 2010 -0300

Also set default values unconditionally, for readability.

Signed-off-by: Max Thrun <bear2...@gmail.com>
Signed-off-by: Antonio Ospite <osp...@studenti.unina.it>
Signed-off-by: Jean-François Moine <moin...@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>

 drivers/media/video/gspca/ov534.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

---

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

diff --git a/drivers/media/video/gspca/ov534.c 
b/drivers/media/video/gspca/ov534.c
index f2077ea..8f01201 100644
--- a/drivers/media/video/gspca/ov534.c
+++ b/drivers/media/video/gspca/ov534.c
@@ -769,7 +769,7 @@ static void sethflip(struct gspca_dev *gspca_dev)
                                sccb_reg_read(gspca_dev, 0x0c) | 0x40);
        else
                sccb_reg_write(gspca_dev, 0x0c,
-                               sccb_reg_read(gspca_dev, 0x0c) & 0xbf);
+                               sccb_reg_read(gspca_dev, 0x0c) & ~0x40);
 }
 
 static void setvflip(struct gspca_dev *gspca_dev)
@@ -781,7 +781,7 @@ static void setvflip(struct gspca_dev *gspca_dev)
                                sccb_reg_read(gspca_dev, 0x0c) | 0x80);
        else
                sccb_reg_write(gspca_dev, 0x0c,
-                               sccb_reg_read(gspca_dev, 0x0c) & 0x7f);
+                               sccb_reg_read(gspca_dev, 0x0c) & ~0x80);
 }
 
 /* this function is called at probe time */
@@ -815,12 +815,8 @@ static int sd_config(struct gspca_dev *gspca_dev,
        sd->awb = AWB_DEF;
        sd->aec = AEC_DEF;
        sd->sharpness = SHARPNESS_DEF;
-#if HFLIP_DEF != 0
        sd->hflip = HFLIP_DEF;
-#endif
-#if VFLIP_DEF != 0
        sd->vflip = VFLIP_DEF;
-#endif
 
        return 0;
 }

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to