]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[media] s5c73m3: fix a sparse warning
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 21:12:39 +0000 (18:12 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 21:12:39 +0000 (18:12 -0300)
drivers/media/i2c/s5c73m3/s5c73m3-core.c:170:39: warning: incorrect type in argument 1 (different base types)
drivers/media/i2c/s5c73m3/s5c73m3-core.c:170:39:    expected restricted __be16 const [usertype] *p
drivers/media/i2c/s5c73m3/s5c73m3-core.c:170:39:    got unsigned short [usertype] *<noident>

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/i2c/s5c73m3/s5c73m3-core.c

index 53c5ea89f0b9768c9b6c64ae4e9bcf5a512fa7ef..51b26010403c1be42126ad481fd3b6b465cd2fbc 100644 (file)
@@ -167,7 +167,7 @@ static int s5c73m3_i2c_read(struct i2c_client *client, u16 addr, u16 *data)
         */
        ret = i2c_transfer(client->adapter, msg, 2);
        if (ret == 2) {
-               *data = be16_to_cpup((u16 *)rbuf);
+               *data = be16_to_cpup((__be16 *)rbuf);
                v4l2_dbg(4, s5c73m3_dbg, client,
                         "%s: addr: 0x%04x, data: 0x%04x\n",
                         __func__, addr, *data);