diff options
author | Lennart Poettering <mzxreary@0pointer.de> | 2009-06-04 15:18:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:07:52 -0400 |
commit | 52a85e17091d2fe9ade6a5d94063e70c5d2a9d5b (patch) | |
tree | 63cc120227cdbcd4c80e4a273e5cb94786307dfd /drivers/media/video | |
parent | e36bc31f823d6089bedc935fea82b6d36793412a (diff) |
V4L/DVB (11993): V4L/pwc - use usb_interface as parent, not usb_device
The current code creates a sysfs device path where the video4linux
device is child of the usb device itself instead of the interface it
belongs to. That is evil and confuses udev.
This patch does basically the same thing as Kay's similar patch for the
ov511 driver:
at git commit ce96d0a44a4f8d1bb3dc12b5e98cb688c1bc730d
Signed-off-by: Lennart Poettering <mzxreary@0pointer.de>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/pwc/pwc-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pwc/pwc-if.c b/drivers/media/video/pwc/pwc-if.c index 519a965de23c..db25c3034c11 100644 --- a/drivers/media/video/pwc/pwc-if.c +++ b/drivers/media/video/pwc/pwc-if.c | |||
@@ -1783,7 +1783,7 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id | |||
1783 | return -ENOMEM; | 1783 | return -ENOMEM; |
1784 | } | 1784 | } |
1785 | memcpy(pdev->vdev, &pwc_template, sizeof(pwc_template)); | 1785 | memcpy(pdev->vdev, &pwc_template, sizeof(pwc_template)); |
1786 | pdev->vdev->parent = &(udev->dev); | 1786 | pdev->vdev->parent = &intf->dev; |
1787 | strcpy(pdev->vdev->name, name); | 1787 | strcpy(pdev->vdev->name, name); |
1788 | video_set_drvdata(pdev->vdev, pdev); | 1788 | video_set_drvdata(pdev->vdev, pdev); |
1789 | 1789 | ||