Skip to content

Commit

Permalink
[media] mxl111sf: fix a couple precedence bugs
Browse files Browse the repository at this point in the history
Negate has higher precedence than bitwise AND.  I2C_M_RD is 0x1 so
the original code is equivelent to just checking if (!msg->flags).

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Steven Toth <stoth@kernellabs.com>
Cc: Michael Krufky <mkrufky@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Dan Carpenter authored and Mauro Carvalho Chehab committed Sep 30, 2011
1 parent 446b792 commit 4c4364e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/dvb-usb/mxl111sf-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ static int mxl111sf_i2c_hw_xfer_msg(struct mxl111sf_state *state,

mxl_i2c("addr: 0x%02x, read buff len: %d, write buff len: %d",
msg->addr, (msg->flags & I2C_M_RD) ? msg->len : 0,
(!msg->flags & I2C_M_RD) ? msg->len : 0);
(!(msg->flags & I2C_M_RD)) ? msg->len : 0);

for (index = 0; index < 26; index++)
buf[index] = USB_END_I2C_CMD;
Expand Down Expand Up @@ -489,7 +489,7 @@ static int mxl111sf_i2c_hw_xfer_msg(struct mxl111sf_state *state,
ret = mxl111sf_i2c_send_data(state, 0, buf);

/* write data on I2C bus */
if ((!msg->flags & I2C_M_RD) && (msg->len > 0)) {
if (!(msg->flags & I2C_M_RD) && (msg->len > 0)) {
mxl_i2c("%d\t%02x", msg->len, msg->buf[0]);

/* control register on I2C interface to initialize I2C bus */
Expand Down

0 comments on commit 4c4364e

Please sign in to comment.