aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/pwc/pwc-if.c
diff options
context:
space:
mode:
authorEzequiel Garcia <[email protected]>2012-08-23 13:08:23 +0000
committerMauro Carvalho Chehab <[email protected]>2012-09-13 20:42:15 +0000
commit4a7ec2db262628f8b13af76b09bb147943264529 (patch)
tree32ca770b7204e6b7e06155b2e35934fab93f106e /drivers/media/usb/pwc/pwc-if.c
parent[media] pwc: Use vb2 queue mutex through a single name (diff)
downloadkernel-4a7ec2db262628f8b13af76b09bb147943264529.tar.gz
kernel-4a7ec2db262628f8b13af76b09bb147943264529.zip
[media] pwc: Remove unneeded struct vb2_queue clearing
struct vb2_queue is allocated through kzalloc as part of a larger struct, there's no need to clear it. Cc: Hans de Goede <[email protected]> Signed-off-by: Ezequiel Garcia <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Diffstat (limited to 'drivers/media/usb/pwc/pwc-if.c')
-rw-r--r--drivers/media/usb/pwc/pwc-if.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/usb/pwc/pwc-if.c b/drivers/media/usb/pwc/pwc-if.c
index b5d0729c28d3..42e36bac4d72 100644
--- a/drivers/media/usb/pwc/pwc-if.c
+++ b/drivers/media/usb/pwc/pwc-if.c
@@ -994,7 +994,6 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
pdev->power_save = my_power_save;
/* Init videobuf2 queue structure */
- memset(&pdev->vb_queue, 0, sizeof(pdev->vb_queue));
pdev->vb_queue.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
pdev->vb_queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
pdev->vb_queue.drv_priv = pdev;