Skip to content

Commit

Permalink
V4L/DVB (12383): gspca - vc032x: Bad h/v flip controls when inverted …
Browse files Browse the repository at this point in the history
…by default.

Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Jean-Francois Moine authored and Mauro Carvalho Chehab committed Sep 12, 2009
1 parent d40a1da commit bb2c818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/gspca/vc032x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2672,10 +2672,10 @@ static void sethvflip(struct gspca_dev *gspca_dev)

hflip = sd->hflip;
if (sd->flags & FL_HFLIP)
hflip != hflip;
hflip = !hflip;
vflip = sd->vflip;
if (sd->flags & FL_VFLIP)
vflip != vflip;
vflip = !vflip;
switch (sd->sensor) {
case SENSOR_MI1310_SOC:
case SENSOR_MI1320_SOC:
Expand Down

0 comments on commit bb2c818

Please sign in to comment.