提交 b3c0af6e 编写于 作者: J Jean-François Moine 提交者: Mauro Carvalho Chehab

V4L/DVB: gspca - sq930x: Change the gain value for Micron sensors

The bit 7 of the sensor gain register multiplies the 7bits value by two.
It is now always set with half the user gain value.
Signed-off-by: NJean-François Moine <moinejf@free.fr>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 4663117b
...@@ -862,7 +862,7 @@ static void setexposure(struct gspca_dev *gspca_dev) ...@@ -862,7 +862,7 @@ static void setexposure(struct gspca_dev *gspca_dev)
buf[i++] = 0x35; /* reg = global gain */ buf[i++] = 0x35; /* reg = global gain */
buf[i++] = 0x00; /* val H */ buf[i++] = 0x00; /* val H */
buf[i++] = sensor->i2c_dum; buf[i++] = sensor->i2c_dum;
buf[i++] = sd->gain; /* val L */ buf[i++] = 0x80 + sd->gain / 2; /* val L */
buf[i++] = 0x00; buf[i++] = 0x00;
buf[i++] = 0x00; buf[i++] = 0x00;
buf[i++] = 0x00; buf[i++] = 0x00;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册