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>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
        for (i = 0; i < num; i++)
                if (msgs[i].flags & I2C_M_RD)
                        rd_num++;
-       new_msgs = kmalloc(sizeof(*new_msgs) * (num + rd_num), GFP_KERNEL);
+       new_msgs = kmalloc_array(num + rd_num, sizeof(*new_msgs), GFP_KERNEL);
        if (!new_msgs)
                return -ENOMEM;