[media] s5c73m3: fix a sparse warning
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>
This commit is contained in:
parent
ef69ee1bc2
commit
c84a71c85b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue