Commit bb2c818f authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab

V4L/DVB (12383): gspca - vc032x: Bad h/v flip controls when inverted by default.

Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d40a1da2
...@@ -2672,10 +2672,10 @@ static void sethvflip(struct gspca_dev *gspca_dev) ...@@ -2672,10 +2672,10 @@ static void sethvflip(struct gspca_dev *gspca_dev)
hflip = sd->hflip; hflip = sd->hflip;
if (sd->flags & FL_HFLIP) if (sd->flags & FL_HFLIP)
hflip != hflip; hflip = !hflip;
vflip = sd->vflip; vflip = sd->vflip;
if (sd->flags & FL_VFLIP) if (sd->flags & FL_VFLIP)
vflip != vflip; vflip = !vflip;
switch (sd->sensor) { switch (sd->sensor) {
case SENSOR_MI1310_SOC: case SENSOR_MI1310_SOC:
case SENSOR_MI1320_SOC: case SENSOR_MI1320_SOC:
......
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