diff options
Diffstat (limited to 'drivers/usb/media/ov511.c')
-rw-r--r-- | drivers/usb/media/ov511.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/media/ov511.c b/drivers/usb/media/ov511.c index 1d887ec06080..da44579d6f29 100644 --- a/drivers/usb/media/ov511.c +++ b/drivers/usb/media/ov511.c | |||
@@ -5686,13 +5686,11 @@ ov51x_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
5686 | if (idesc->bInterfaceSubClass != 0x00) | 5686 | if (idesc->bInterfaceSubClass != 0x00) |
5687 | return -ENODEV; | 5687 | return -ENODEV; |
5688 | 5688 | ||
5689 | if ((ov = kmalloc(sizeof(*ov), GFP_KERNEL)) == NULL) { | 5689 | if ((ov = kzalloc(sizeof(*ov), GFP_KERNEL)) == NULL) { |
5690 | err("couldn't kmalloc ov struct"); | 5690 | err("couldn't kmalloc ov struct"); |
5691 | goto error_out; | 5691 | goto error_out; |
5692 | } | 5692 | } |
5693 | 5693 | ||
5694 | memset(ov, 0, sizeof(*ov)); | ||
5695 | |||
5696 | ov->dev = dev; | 5694 | ov->dev = dev; |
5697 | ov->iface = idesc->bInterfaceNumber; | 5695 | ov->iface = idesc->bInterfaceNumber; |
5698 | ov->led_policy = led; | 5696 | ov->led_policy = led; |