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 <mche...@osg.samsung.com>

diff --git a/drivers/media/i2c/s5c73m3/s5c73m3-core.c 
b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
index 53c5ea89f0b9..51b26010403c 100644
--- a/drivers/media/i2c/s5c73m3/s5c73m3-core.c
+++ b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
@@ -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);
-- 
2.4.3


--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to