]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/media/video/ov772x.c
V4L/DVB (10668): ov772x: bit mask operation fix on ov772x_mask_set.
[linux-2.6-omap-h63xx.git] / drivers / media / video / ov772x.c
index 702e61a9c02b71cdb13c04414ba4a3991d01c68b..6b18da7c3c0ac02272a8f38a99171436edbf641a 100644 (file)
@@ -565,8 +565,11 @@ static int ov772x_mask_set(struct i2c_client *client,
                                          u8  set)
 {
        s32 val = i2c_smbus_read_byte_data(client, command);
+       if (val < 0)
+               return val;
+
        val &= ~mask;
-       val |=  set;
+       val |= set & mask;
 
        return i2c_smbus_write_byte_data(client, command, val);
 }