Commit 56ed221f authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab

[media] mem2mem_testdev: Add missing braces around sizeof

Fixes the following checkpatch warnings:
WARNING: sizeof *ctx should be sizeof(*ctx)
WARNING: sizeof *dev should be sizeof(*dev)
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent b7e13ef7
...@@ -894,7 +894,7 @@ static int m2mtest_open(struct file *file) ...@@ -894,7 +894,7 @@ static int m2mtest_open(struct file *file)
if (mutex_lock_interruptible(&dev->dev_mutex)) if (mutex_lock_interruptible(&dev->dev_mutex))
return -ERESTARTSYS; return -ERESTARTSYS;
ctx = kzalloc(sizeof *ctx, GFP_KERNEL); ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
if (!ctx) { if (!ctx) {
rc = -ENOMEM; rc = -ENOMEM;
goto open_unlock; goto open_unlock;
...@@ -1020,7 +1020,7 @@ static int m2mtest_probe(struct platform_device *pdev) ...@@ -1020,7 +1020,7 @@ static int m2mtest_probe(struct platform_device *pdev)
struct video_device *vfd; struct video_device *vfd;
int ret; int ret;
dev = kzalloc(sizeof *dev, GFP_KERNEL); dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev) if (!dev)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment