V4L/DVB (12695): gspca - vc032x: Do the LED work with the sensor hv7131r.

Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Jean-Francois Moine 2009-09-01 14:02:22 -03:00 committed by Mauro Carvalho Chehab
parent 0ee7e4d6d4
commit ae310ee109

View File

@ -2937,21 +2937,22 @@ static int sd_start(struct gspca_dev *gspca_dev)
put_tab_to_reg(gspca_dev, MatrixT, 9, 0xb82c);
/* set the led on 0x0892 0x0896 */
if (sd->sensor == SENSOR_PO1200) {
switch (sd->sensor) {
case SENSOR_PO1200:
case SENSOR_HV7131R:
reg_w(gspca_dev->dev, 0x89, 0x0400, 0x1415);
break;
case SENSOR_MI1310_SOC:
reg_w(gspca_dev->dev, 0x89, 0x058c, 0x0000);
break;
default:
reg_w(gspca_dev->dev, 0x89, 0xffff, 0xfdff);
break;
}
msleep(100);
setsharpness(gspca_dev);
sethvflip(gspca_dev);
reg_w(gspca_dev->dev, 0x89, 0x0400, 0x1415);
} else if (sd->sensor == SENSOR_MI1310_SOC) {
reg_w(gspca_dev->dev, 0x89, 0x058c, 0x0000);
msleep(100);
sethvflip(gspca_dev);
setlightfreq(gspca_dev);
} else {
reg_w(gspca_dev->dev, 0x89, 0xffff, 0xfdff);
msleep(100);
sethvflip(gspca_dev);
setlightfreq(gspca_dev);
}
}
return 0;
}