public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1 of 8] v4l: use usb_interface for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
@ 2009-03-29 14:57 ` Janne Grunau
  2009-03-29 14:58 ` [PATCH 2 of 8] cx231xx: use usb_interface.dev " Janne Grunau
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:57 UTC (permalink / raw)
  To: linux-media; +Cc: Hans Verkuil

[-- Attachment #1: doc_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 1299 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID 36b738f9cb1916e9885084f32bb29373f70f0720
# Parent  df7a51ffa2baddae044a318c928f960488b9ec38
v4l: use usb_interface for v4l2_device_register

If usb_interface.dev is used as dev parameter for v4l2_device_register
v4l2_dev.name contains the v4l driver/module name and usb device and
interface instead of a simple "usb x-y".
It also matches the recommendation to set the parent devices for usb
drivers.

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r df7a51ffa2ba -r 36b738f9cb19 linux/Documentation/video4linux/v4l2-framework.txt
--- a/linux/Documentation/video4linux/v4l2-framework.txt	Sun Mar 29 05:58:58 2009 -0300
+++ b/linux/Documentation/video4linux/v4l2-framework.txt	Sun Mar 29 16:53:48 2009 +0200
@@ -90,7 +90,7 @@
 NULL, then you *must* setup v4l2_dev->name before calling v4l2_device_register.
 
 The first 'dev' argument is normally the struct device pointer of a pci_dev,
-usb_device or platform_device. It is rare for dev to be NULL, but it happens
+usb_interface or platform_device. It is rare for dev to be NULL, but it happens
 with ISA devices or when one device creates multiple PCI devices, thus making
 it impossible to associate v4l2_dev with a particular parent.
 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 2 of 8] cx231xx: use usb_interface.dev for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
  2009-03-29 14:57 ` [PATCH 1 of 8] v4l: use usb_interface for v4l2_device_register Janne Grunau
@ 2009-03-29 14:58 ` Janne Grunau
  2009-03-29 14:58 ` [PATCH 3 of 8] cx231xx: remove explicitly set v4l2_device.name Janne Grunau
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:58 UTC (permalink / raw)
  To: linux-media; +Cc: Srinivasa Deevi

[-- Attachment #1: cx231xx_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 930 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID eb7601494dc5e58ed519dde38c763fee20cbd0a9
# Parent  36b738f9cb1916e9885084f32bb29373f70f0720
cx231xx: use usb_interface.dev for v4l2_device_register

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r 36b738f9cb19 -r eb7601494dc5 linux/drivers/media/video/cx231xx/cx231xx-cards.c
--- a/linux/drivers/media/video/cx231xx/cx231xx-cards.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/cx231xx/cx231xx-cards.c	Sun Mar 29 16:53:48 2009 +0200
@@ -685,7 +685,7 @@
 	/* Create v4l2 device */
 	snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
 					"%s-%03d", "cx231xx", nr);
-	retval = v4l2_device_register(&udev->dev, &dev->v4l2_dev);
+	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
 	if (retval) {
 		cx231xx_errdev("v4l2_device_register failed\n");
 		cx231xx_devused &= ~(1 << nr);

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 3 of 8] cx231xx: remove explicitly set v4l2_device.name
       [not found] <patchbomb.1238338474@aniel>
  2009-03-29 14:57 ` [PATCH 1 of 8] v4l: use usb_interface for v4l2_device_register Janne Grunau
  2009-03-29 14:58 ` [PATCH 2 of 8] cx231xx: use usb_interface.dev " Janne Grunau
@ 2009-03-29 14:58 ` Janne Grunau
  2009-03-29 14:58 ` [PATCH 4 of 8] usbvision: use usb_interface.dev for v4l2_device_register Janne Grunau
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:58 UTC (permalink / raw)
  To: linux-media; +Cc: Srinivasa Deevi

[-- Attachment #1: cx231xx_remove_v4l2_dev_name.diff --]
[-- Type: text/x-patch, Size: 835 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID ce50af27b414d4e146e6833b78852b42b129293a
# Parent  eb7601494dc5e58ed519dde38c763fee20cbd0a9
cx231xx: remove explicitly set v4l2_device.name

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r eb7601494dc5 -r ce50af27b414 linux/drivers/media/video/cx231xx/cx231xx-cards.c
--- a/linux/drivers/media/video/cx231xx/cx231xx-cards.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/cx231xx/cx231xx-cards.c	Sun Mar 29 16:53:48 2009 +0200
@@ -683,8 +683,6 @@
 	 */
 
 	/* Create v4l2 device */
-	snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name),
-					"%s-%03d", "cx231xx", nr);
 	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
 	if (retval) {
 		cx231xx_errdev("v4l2_device_register failed\n");

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 4 of 8] usbvision: use usb_interface.dev for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
                   ` (2 preceding siblings ...)
  2009-03-29 14:58 ` [PATCH 3 of 8] cx231xx: remove explicitly set v4l2_device.name Janne Grunau
@ 2009-03-29 14:58 ` Janne Grunau
  2009-03-29 14:59 ` [PATCH 5 of 8] pvrusb2: " Janne Grunau
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:58 UTC (permalink / raw)
  To: linux-media

[-- Attachment #1: usbvision_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 1410 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID 01af508490af3bc9c939c36001d6989e2c147aa0
# Parent  ce50af27b414d4e146e6833b78852b42b129293a
usbvision: use usb_interface.dev for v4l2_device_register

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r ce50af27b414 -r 01af508490af linux/drivers/media/video/usbvision/usbvision-video.c
--- a/linux/drivers/media/video/usbvision/usbvision-video.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/usbvision/usbvision-video.c	Sun Mar 29 16:53:48 2009 +0200
@@ -1522,7 +1522,8 @@
  * Returns NULL on error, a pointer to usb_usbvision else.
  *
  */
-static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
+static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
+					     struct usb_interface *intf)
 {
 	struct usb_usbvision *usbvision;
 
@@ -1531,7 +1532,7 @@
 		return NULL;
 
 	usbvision->dev = dev;
-	if (v4l2_device_register(&dev->dev, &usbvision->v4l2_dev))
+	if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
 		goto err_free;
 
 	mutex_init(&usbvision->lock);	/* available */
@@ -1669,7 +1670,8 @@
 		return -ENODEV;
 	}
 
-	if ((usbvision = usbvision_alloc(dev)) == NULL) {
+	usbvision = usbvision_alloc(dev, intf);
+	if (usbvision == NULL) {
 		dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
 		return -ENOMEM;
 	}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 5 of 8] pvrusb2: use usb_interface.dev for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
                   ` (3 preceding siblings ...)
  2009-03-29 14:58 ` [PATCH 4 of 8] usbvision: use usb_interface.dev for v4l2_device_register Janne Grunau
@ 2009-03-29 14:59 ` Janne Grunau
  2009-04-01  2:02   ` Mike Isely
  2009-03-29 14:59 ` [PATCH 6 of 8] au0828: " Janne Grunau
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:59 UTC (permalink / raw)
  To: linux-media

[-- Attachment #1: pvrusb2_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 902 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID 2d52ac089920f9ac36960c0245442fd89a06bb75
# Parent  01af508490af3bc9c939c36001d6989e2c147aa0
pvrusb2: use usb_interface.dev for v4l2_device_register

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r 01af508490af -r 2d52ac089920 linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c
--- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
@@ -2591,7 +2591,7 @@
 	hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
 	if (!hdw->ctl_read_urb) goto fail;
 
-	if (v4l2_device_register(&usb_dev->dev, &hdw->v4l2_dev) != 0) {
+	if (v4l2_device_register(&intf->dev, &hdw->v4l2_dev) != 0) {
 		pvr2_trace(PVR2_TRACE_ERROR_LEGS,
 			   "Error registering with v4l core, giving up");
 		goto fail;

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 6 of 8] au0828: use usb_interface.dev for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
                   ` (4 preceding siblings ...)
  2009-03-29 14:59 ` [PATCH 5 of 8] pvrusb2: " Janne Grunau
@ 2009-03-29 14:59 ` Janne Grunau
  2009-03-29 14:59 ` [PATCH 7 of 8] au0828: remove explicitly set v4l2_device.name and unused au0828_instance Janne Grunau
  2009-03-29 14:59 ` [PATCH 8 of 8] w9968cf: use usb_interface.dev for v4l2_device_register Janne Grunau
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:59 UTC (permalink / raw)
  To: linux-media; +Cc: Devin Heitmueller

[-- Attachment #1: au0828_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 935 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID 1fd54536517a9be6f93f5711766bb8efd64ddbdf
# Parent  2d52ac089920f9ac36960c0245442fd89a06bb75
au0828: use usb_interface.dev for v4l2_device_register

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r 2d52ac089920 -r 1fd54536517a linux/drivers/media/video/au0828/au0828-core.c
--- a/linux/drivers/media/video/au0828/au0828-core.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/au0828/au0828-core.c	Sun Mar 29 16:53:48 2009 +0200
@@ -201,7 +201,7 @@
 	i = atomic_inc_return(&au0828_instance) - 1;
 	snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name), "%s-%03d",
 		 "au0828", i);
-	retval = v4l2_device_register(&dev->usbdev->dev, &dev->v4l2_dev);
+	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
 	if (retval) {
 		printk(KERN_ERR "%s() v4l2_device_register failed\n",
 		       __func__);

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 7 of 8] au0828: remove explicitly set v4l2_device.name and unused au0828_instance
       [not found] <patchbomb.1238338474@aniel>
                   ` (5 preceding siblings ...)
  2009-03-29 14:59 ` [PATCH 6 of 8] au0828: " Janne Grunau
@ 2009-03-29 14:59 ` Janne Grunau
  2009-03-29 14:59 ` [PATCH 8 of 8] w9968cf: use usb_interface.dev for v4l2_device_register Janne Grunau
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:59 UTC (permalink / raw)
  To: linux-media; +Cc: Devin Heitmueller

[-- Attachment #1: au0828_remove_v4l2_dev_name.diff --]
[-- Type: text/x-patch, Size: 1428 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID 9de2e49de0b75360d86b8fc444de057a485003c1
# Parent  1fd54536517a9be6f93f5711766bb8efd64ddbdf
au0828: remove explicitly set v4l2_device.name and unused au0828_instance

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r 1fd54536517a -r 9de2e49de0b7 linux/drivers/media/video/au0828/au0828-core.c
--- a/linux/drivers/media/video/au0828/au0828-core.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/au0828/au0828-core.c	Sun Mar 29 16:53:48 2009 +0200
@@ -37,8 +37,6 @@
 module_param_named(debug, au0828_debug, int, 0644);
 MODULE_PARM_DESC(debug, "enable debug messages");
 
-static atomic_t au0828_instance = ATOMIC_INIT(0);
-
 #define _AU0828_BULKPIPE 0x03
 #define _BULKPIPESIZE 0xffff
 
@@ -170,7 +168,7 @@
 static int au0828_usb_probe(struct usb_interface *interface,
 	const struct usb_device_id *id)
 {
-	int ifnum, retval, i;
+	int ifnum, retval;
 	struct au0828_dev *dev;
 	struct usb_device *usbdev = interface_to_usbdev(interface);
 
@@ -198,9 +196,6 @@
 	usb_set_intfdata(interface, dev);
 
 	/* Create the v4l2_device */
-	i = atomic_inc_return(&au0828_instance) - 1;
-	snprintf(dev->v4l2_dev.name, sizeof(dev->v4l2_dev.name), "%s-%03d",
-		 "au0828", i);
 	retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
 	if (retval) {
 		printk(KERN_ERR "%s() v4l2_device_register failed\n",

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 8 of 8] w9968cf: use usb_interface.dev for v4l2_device_register
       [not found] <patchbomb.1238338474@aniel>
                   ` (6 preceding siblings ...)
  2009-03-29 14:59 ` [PATCH 7 of 8] au0828: remove explicitly set v4l2_device.name and unused au0828_instance Janne Grunau
@ 2009-03-29 14:59 ` Janne Grunau
  7 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-03-29 14:59 UTC (permalink / raw)
  To: linux-media

[-- Attachment #1: w9968cf_usb_intf_v4l2_dev.diff --]
[-- Type: text/x-patch, Size: 719 bytes --]

# HG changeset patch
# User Janne Grunau <j@jannau.net>
# Date 1238338428 -7200
# Node ID fcd789d767ee307c25a006528bcd1b021d56b732
# Parent  9de2e49de0b75360d86b8fc444de057a485003c1
w9968cf: use usb_interface.dev for v4l2_device_register

Priority: normal

Signed-off-by: Janne Grunau <j@jannau.net>

diff -r 9de2e49de0b7 -r fcd789d767ee linux/drivers/media/video/w9968cf.c
--- a/linux/drivers/media/video/w9968cf.c	Sun Mar 29 16:53:48 2009 +0200
+++ b/linux/drivers/media/video/w9968cf.c	Sun Mar 29 16:53:48 2009 +0200
@@ -3454,7 +3454,7 @@
 	if (!cam)
 		return -ENOMEM;
 
-	err = v4l2_device_register(&udev->dev, &cam->v4l2_dev);
+	err = v4l2_device_register(&intf->dev, &cam->v4l2_dev);
 	if (err)
 		goto fail0;
 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 5 of 8] pvrusb2: use usb_interface.dev for v4l2_device_register
  2009-03-29 14:59 ` [PATCH 5 of 8] pvrusb2: " Janne Grunau
@ 2009-04-01  2:02   ` Mike Isely
  2009-04-01  9:37     ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 11+ messages in thread
From: Mike Isely @ 2009-04-01  2:02 UTC (permalink / raw)
  To: Janne Grunau, Mauro Carvalho Chehab; +Cc: linux-media


This patch will not at all impact the operation of the pvrusb2 driver, 
and if associating with the USB interface's device node is preferred 
then I'm fine with it.

Acked-by: Mike Isely <isely@pobox.com>

Mauro: Is this series going to be pulled into v4l-dvb or shall I just 
bring this one specific change into my pvrusb2 repo?  Is there any 
reason not to pull it?

  -Mike


On Sun, 29 Mar 2009, Janne Grunau wrote:

> # HG changeset patch
> # User Janne Grunau <j@jannau.net>
> # Date 1238338428 -7200
> # Node ID 2d52ac089920f9ac36960c0245442fd89a06bb75
> # Parent  01af508490af3bc9c939c36001d6989e2c147aa0
> pvrusb2: use usb_interface.dev for v4l2_device_register
> 
> Priority: normal
> 
> Signed-off-by: Janne Grunau <j@jannau.net>
> 
> diff -r 01af508490af -r 2d52ac089920 linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c
> --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
> +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
> @@ -2591,7 +2591,7 @@
>  	hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
>  	if (!hdw->ctl_read_urb) goto fail;
>  
> -	if (v4l2_device_register(&usb_dev->dev, &hdw->v4l2_dev) != 0) {
> +	if (v4l2_device_register(&intf->dev, &hdw->v4l2_dev) != 0) {
>  		pvr2_trace(PVR2_TRACE_ERROR_LEGS,
>  			   "Error registering with v4l core, giving up");
>  		goto fail;
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

-- 

Mike Isely
isely @ pobox (dot) com
PGP: 03 54 43 4D 75 E5 CC 92 71 16 01 E2 B5 F5 C1 E8

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 5 of 8] pvrusb2: use usb_interface.dev for v4l2_device_register
  2009-04-01  2:02   ` Mike Isely
@ 2009-04-01  9:37     ` Mauro Carvalho Chehab
  2009-04-01 11:13       ` Janne Grunau
  0 siblings, 1 reply; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2009-04-01  9:37 UTC (permalink / raw)
  To: Mike Isely; +Cc: isely, Janne Grunau, linux-media

On Tue, 31 Mar 2009 21:02:16 -0500 (CDT)
Mike Isely <isely@isely.net> wrote:

> 
> This patch will not at all impact the operation of the pvrusb2 driver, 
> and if associating with the USB interface's device node is preferred 
> then I'm fine with it.
> 
> Acked-by: Mike Isely <isely@pobox.com>
> 
> Mauro: Is this series going to be pulled into v4l-dvb or shall I just 
> bring this one specific change into my pvrusb2 repo?  Is there any 
> reason not to pull it?

I'll take care on it on the next time I'll apply patchwork patches. I suspect
that Janne preferred to send via email for people to better analyse the impacts.
> 
>   -Mike
> 
> 
> On Sun, 29 Mar 2009, Janne Grunau wrote:
> 
> > # HG changeset patch
> > # User Janne Grunau <j@jannau.net>
> > # Date 1238338428 -7200
> > # Node ID 2d52ac089920f9ac36960c0245442fd89a06bb75
> > # Parent  01af508490af3bc9c939c36001d6989e2c147aa0
> > pvrusb2: use usb_interface.dev for v4l2_device_register
> > 
> > Priority: normal
> > 
> > Signed-off-by: Janne Grunau <j@jannau.net>
> > 
> > diff -r 01af508490af -r 2d52ac089920 linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c
> > --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
> > +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c	Sun Mar 29 16:53:48 2009 +0200
> > @@ -2591,7 +2591,7 @@
> >  	hdw->ctl_read_urb = usb_alloc_urb(0,GFP_KERNEL);
> >  	if (!hdw->ctl_read_urb) goto fail;
> >  
> > -	if (v4l2_device_register(&usb_dev->dev, &hdw->v4l2_dev) != 0) {
> > +	if (v4l2_device_register(&intf->dev, &hdw->v4l2_dev) != 0) {
> >  		pvr2_trace(PVR2_TRACE_ERROR_LEGS,
> >  			   "Error registering with v4l core, giving up");
> >  		goto fail;
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-media" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> 




Cheers,
Mauro

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 5 of 8] pvrusb2: use usb_interface.dev for v4l2_device_register
  2009-04-01  9:37     ` Mauro Carvalho Chehab
@ 2009-04-01 11:13       ` Janne Grunau
  0 siblings, 0 replies; 11+ messages in thread
From: Janne Grunau @ 2009-04-01 11:13 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: Mike Isely, isely, linux-media

On Wed, Apr 01, 2009 at 06:37:18AM -0300, Mauro Carvalho Chehab wrote:
> On Tue, 31 Mar 2009 21:02:16 -0500 (CDT)
> Mike Isely <isely@isely.net> wrote:
> 
> > 
> > This patch will not at all impact the operation of the pvrusb2 driver, 
> > and if associating with the USB interface's device node is preferred 
> > then I'm fine with it.
> > 
> > Acked-by: Mike Isely <isely@pobox.com>

Thanks, added.

> > Mauro: Is this series going to be pulled into v4l-dvb or shall I just 
> > bring this one specific change into my pvrusb2 repo?  Is there any 
> > reason not to pull it?
> 
> I'll take care on it on the next time I'll apply patchwork patches.

You don't need to. My plan was to send a pull request once I have enough
feedback. I should have said that in the intro mail.

> I suspect
> that Janne preferred to send via email for people to better analyse the impacts.

Yes, exactly.

Janne

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2009-04-01 11:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <patchbomb.1238338474@aniel>
2009-03-29 14:57 ` [PATCH 1 of 8] v4l: use usb_interface for v4l2_device_register Janne Grunau
2009-03-29 14:58 ` [PATCH 2 of 8] cx231xx: use usb_interface.dev " Janne Grunau
2009-03-29 14:58 ` [PATCH 3 of 8] cx231xx: remove explicitly set v4l2_device.name Janne Grunau
2009-03-29 14:58 ` [PATCH 4 of 8] usbvision: use usb_interface.dev for v4l2_device_register Janne Grunau
2009-03-29 14:59 ` [PATCH 5 of 8] pvrusb2: " Janne Grunau
2009-04-01  2:02   ` Mike Isely
2009-04-01  9:37     ` Mauro Carvalho Chehab
2009-04-01 11:13       ` Janne Grunau
2009-03-29 14:59 ` [PATCH 6 of 8] au0828: " Janne Grunau
2009-03-29 14:59 ` [PATCH 7 of 8] au0828: remove explicitly set v4l2_device.name and unused au0828_instance Janne Grunau
2009-03-29 14:59 ` [PATCH 8 of 8] w9968cf: use usb_interface.dev for v4l2_device_register Janne Grunau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox