diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-04 19:18:13 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-04 19:18:13 +0000 |
commit | 4a8ec05c873aa6247954e168931f9937c948a6cc (patch) | |
tree | db43eb480ee51fb4545c591187b8bbae4d756c4f /linux | |
parent | 337800edfc26abd2a7b3a13733836f35244d8ca5 (diff) | |
download | mediapointer-dvb-s2-4a8ec05c873aa6247954e168931f9937c948a6cc.tar.gz mediapointer-dvb-s2-4a8ec05c873aa6247954e168931f9937c948a6cc.tar.bz2 |
V4L/pwc - use usb_interface as parent, not usb_device
From: Lennart Poettering <mzxreary@0pointer.de>
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:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=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 'linux')
-rw-r--r-- | linux/drivers/media/video/pwc/pwc-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/pwc/pwc-if.c b/linux/drivers/media/video/pwc/pwc-if.c index eaeea5520..4087612ee 100644 --- a/linux/drivers/media/video/pwc/pwc-if.c +++ b/linux/drivers/media/video/pwc/pwc-if.c @@ -1791,7 +1791,7 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id return -ENOMEM; } memcpy(pdev->vdev, &pwc_template, sizeof(pwc_template)); - pdev->vdev->parent = &(udev->dev); + pdev->vdev->parent = &intf->dev; strcpy(pdev->vdev->name, name); video_set_drvdata(pdev->vdev, pdev); |