V4L/DVB (8712): gspca: Bad start of sonixj webcams since changeset a8779025e7e8.
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
4a18625e88
commit
759aa3c21e
1 changed files with 2 additions and 4 deletions
|
@ -59,7 +59,6 @@ struct sd {
|
||||||
#define SENSOR_OV7648 5
|
#define SENSOR_OV7648 5
|
||||||
#define SENSOR_OV7660 6
|
#define SENSOR_OV7660 6
|
||||||
unsigned char i2c_base;
|
unsigned char i2c_base;
|
||||||
__u8 regf1;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* V4L2 controls supported by the driver */
|
/* V4L2 controls supported by the driver */
|
||||||
|
@ -929,7 +928,6 @@ static int sd_config(struct gspca_dev *gspca_dev,
|
||||||
sd->bridge = id->driver_info >> 16;
|
sd->bridge = id->driver_info >> 16;
|
||||||
sd->sensor = id->driver_info >> 8;
|
sd->sensor = id->driver_info >> 8;
|
||||||
sd->i2c_base = id->driver_info;
|
sd->i2c_base = id->driver_info;
|
||||||
sd->regf1 = 0; /*jfm: was 1 in v1*/
|
|
||||||
|
|
||||||
sd->qindex = 4; /* set the quantization table */
|
sd->qindex = 4; /* set the quantization table */
|
||||||
sd->brightness = BRIGHTNESS_DEF;
|
sd->brightness = BRIGHTNESS_DEF;
|
||||||
|
@ -982,7 +980,7 @@ static int sd_open(struct gspca_dev *gspca_dev)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
reg_w1(gspca_dev, 0xf1, sd->regf1);
|
reg_w1(gspca_dev, 0xf1, 0x01);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1346,7 +1344,7 @@ static void sd_stopN(struct gspca_dev *gspca_dev)
|
||||||
reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]);
|
reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]);
|
||||||
reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
|
reg_w1(gspca_dev, 0x01, sn9c1xx[1]);
|
||||||
reg_w1(gspca_dev, 0x01, data);
|
reg_w1(gspca_dev, 0x01, data);
|
||||||
reg_w1(gspca_dev, 0xf1, sd->regf1);
|
reg_w1(gspca_dev, 0xf1, 0x00);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sd_stop0(struct gspca_dev *gspca_dev)
|
static void sd_stop0(struct gspca_dev *gspca_dev)
|
||||||
|
|
Loading…
Reference in a new issue