[media] saa7164: fix sparse warning
authorHans Verkuil <hans.verkuil@cisco.com>
Fri, 22 May 2015 13:45:28 +0000 (10:45 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 30 May 2015 14:22:34 +0000 (11:22 -0300)
drivers/media/pci/saa7164/saa7164-i2c.c:45:33: warning: Using plain integer as NULL pointer

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Reviewed-by: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/pci/saa7164/saa7164-i2c.c

index 6ea9d4f..0342d84 100644 (file)
@@ -42,7 +42,7 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
                        retval = saa7164_api_i2c_read(bus,
                                msgs[i].addr,
                                0 /* reglen */,
-                               0 /* reg */, msgs[i].len, msgs[i].buf);
+                               NULL /* reg */, msgs[i].len, msgs[i].buf);
                } else if (i + 1 < num && (msgs[i + 1].flags & I2C_M_RD) &&
                           msgs[i].addr == msgs[i + 1].addr) {
                        /* write then read from same address */