media: usbvision: Improve a size determination in usbvision_alloc()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 26 Aug 2017 20:22:13 +0000 (16:22 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 27 Aug 2017 12:48:47 +0000 (08:48 -0400)
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/usbvision/usbvision-video.c

index e6807bad97926f4c0b93ea37e8d8f1c7241566bb..960272d3c9241819ec18f7e6753cf5158c7a155b 100644 (file)
@@ -1319,7 +1319,7 @@ static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
 {
        struct usb_usbvision *usbvision;
 
-       usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
+       usbvision = kzalloc(sizeof(*usbvision), GFP_KERNEL);
        if (!usbvision)
                return NULL;