From: Nasser Afshin Date: Mon, 2 Apr 2018 22:23:20 +0000 (-0400) Subject: media: i2c: tvp5150: Use parentheses for sizeof X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=bb7a3681b2cf0cb31df12c41d75eaf2e56340bb9;p=openwrt%2Fstaging%2Fblogic.git media: i2c: tvp5150: Use parentheses for sizeof This patch resolves a checkpatch.pl warning: WARNING: sizeof *cap should be sizeof(*cap) Signed-off-by: Nasser Afshin Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index 2476d812f669..8322190931a6 100644 --- a/drivers/media/i2c/tvp5150.c +++ b/drivers/media/i2c/tvp5150.c @@ -623,7 +623,7 @@ static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd, int line, i; dev_dbg_lvl(sd->dev, 1, debug, "g_sliced_vbi_cap\n"); - memset(cap, 0, sizeof *cap); + memset(cap, 0, sizeof(*cap)); for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) { const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];