summaryrefslogtreecommitdiffstats
path: root/drivers/media/v4l2-core/v4l2-async.c
diff options
context:
space:
mode:
authorMarkus Elfring2016-12-26 18:14:33 +0100
committerMauro Carvalho Chehab2017-01-31 10:46:57 +0100
commitf9e9c0669f15919a0e5e2908369eb6406af95ca0 (patch)
treef66151f693977a21c828fc94e67cba248c341991 /drivers/media/v4l2-core/v4l2-async.c
parent[media] media: usb: cpia2: Use kmemdup instead of kmalloc and memcpy (diff)
downloadkernel-qcow2-linux-f9e9c0669f15919a0e5e2908369eb6406af95ca0.tar.gz
kernel-qcow2-linux-f9e9c0669f15919a0e5e2908369eb6406af95ca0.tar.xz
kernel-qcow2-linux-f9e9c0669f15919a0e5e2908369eb6406af95ca0.zip
[media] v4l2-async: Use kmalloc_array() in v4l2_async_notifier_unregister()
A multiplication for the size determination of a memory allocation indicated that an array data structure should be processed. Thus use the corresponding function "kmalloc_array". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/v4l2-core/v4l2-async.c')
-rw-r--r--drivers/media/v4l2-core/v4l2-async.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
index 5bada202b2d3..277183f2d514 100644
--- a/drivers/media/v4l2-core/v4l2-async.c
+++ b/drivers/media/v4l2-core/v4l2-async.c
@@ -202,7 +202,7 @@ void v4l2_async_notifier_unregister(struct v4l2_async_notifier *notifier)
if (!notifier->v4l2_dev)
return;
- dev = kmalloc(n_subdev * sizeof(*dev), GFP_KERNEL);
+ dev = kmalloc_array(n_subdev, sizeof(*dev), GFP_KERNEL);
if (!dev) {
dev_err(notifier->v4l2_dev->dev,
"Failed to allocate device cache!\n");