mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
V4L/DVB (11648): gspca - m5602: Remove some needless error checking and add comments
Signed-off-by: Erik Andrén <erik.andren@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
934f78c306
commit
52fa70b7f4
@ -112,18 +112,16 @@ int m5602_read_sensor(struct sd *sd, const u8 address,
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
/* Sensors with registers that only are one byte width are differently read */
|
||||
/* FIXME: This works with the ov9650, but has issues with the po1030 */
|
||||
if (sd->sensor->i2c_regW == 1) {
|
||||
err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, len);
|
||||
err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, 1);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, 0x08);
|
||||
if (err < 0)
|
||||
return err;
|
||||
} else {
|
||||
err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, 0x18 + len);
|
||||
if (err < 0)
|
||||
return err;
|
||||
}
|
||||
|
||||
for (i = 0; (i < len) && !err; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user