media: test_drivers: vivid-core: Use array_size() helper
authorGustavo A. R. Silva <gustavoars@kernel.org>
Mon, 15 Jun 2020 21:40:15 +0000 (23:40 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sat, 4 Jul 2020 10:42:19 +0000 (12:42 +0200)
The tpg_alloc() and vmalloc() functions have no 2-factor argument form, so
multiplication factors need to be wrapped in array_size().

This issue was found with the help of Coccinelle and, audited and fixed
manually.

Addresses-KSPP-ID: https://github.com/KSPP/linux/issues/83

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/test-drivers/vivid/vivid-core.c

index 5c986df..f7ee37e 100644 (file)
@@ -1126,7 +1126,7 @@ static int vivid_create_instance(struct platform_device *pdev, int inst)
        ret = -ENOMEM;
        /* initialize the test pattern generator */
        tpg_init(&dev->tpg, 640, 360);
-       if (tpg_alloc(&dev->tpg, MAX_ZOOM * MAX_WIDTH))
+       if (tpg_alloc(&dev->tpg, array_size(MAX_WIDTH, MAX_ZOOM)))
                goto free_dev;
        dev->scaled_line = vzalloc(array_size(MAX_WIDTH, MAX_ZOOM));
        if (!dev->scaled_line)
@@ -1136,7 +1136,7 @@ static int vivid_create_instance(struct platform_device *pdev, int inst)
                goto free_dev;
 
        /* load the edid */
-       dev->edid = vmalloc(256 * 128);
+       dev->edid = vmalloc(array_size(256, 128));
        if (!dev->edid)
                goto free_dev;