V4L/DVB: dvb-usb/opera1: misplaced parenthesis
authorRoel Kluin <[email protected]>
Mon, 15 Feb 2010 22:30:38 +0000 (19:30 -0300)
committerMauro Carvalho Chehab <[email protected]>
Fri, 26 Feb 2010 18:11:03 +0000 (15:11 -0300)
The parenthesis was misplaced, tmp is set to 0 or break occurs,
while debugging opera1_usb_i2c_msgxfer() retval was not shown.

Signed-off-by: Roel Kluin <[email protected]>
CC: Marco Gittler <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
drivers/media/dvb/dvb-usb/opera1.c

index d4e230941679a880ac154d21d5db31104c4f8275..830557696ae6ff0a39c043833fa16b44e4f0c0a6 100644 (file)
@@ -138,7 +138,7 @@ static int opera1_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
                                        (msg[i].addr<<1)|(msg[i].flags&I2C_M_RD?0x01:0),
                                        msg[i].buf,
                                        msg[i].len
-                                       )!= msg[i].len)) {
+                                       )) != msg[i].len) {
                        break;
                }
                if (dvb_usb_opera1_debug & 0x10)