* [PATCH]: cdc-subset to support new vendor/product ID
@ 2007-07-06 10:10 jing xiang
2007-07-06 20:43 ` [linux-usb-devel] " David Brownell
2007-07-10 16:46 ` Jeff Garzik
0 siblings, 2 replies; 6+ messages in thread
From: jing xiang @ 2007-07-06 10:10 UTC (permalink / raw)
To: netdev, linux-usb-devel; +Cc: David Brownell, greg
Hi,
This patch is for cdc subset to support Mavell vendor/product ID.
Jing Xiang
Signed-off-by: Jing Xiang<everxiang@gmail.com>
diff -uNpr linux-2.6.21.5/driver/usb/net/cdc_subset.c
linux-2.6.21.5.t/driver/usb/net/cdc_subset.c
--- linux-2.6.21.5/driver/usb/net/cdc_subset.c 2007-06-14
18:34:05.000000000 +0800
+++ linux-2.6.21.5.t/driver/usb/net/cdc_subset.c 2007-06-28
15:55:56.290598304 +0800
@@ -305,6 +305,9 @@ static const struct usb_device_id produc
USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
.driver_info = (unsigned long) &blob_info,
}, {
+ USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
+ .driver_info = (unsigned long) &blob_info,
+}, {
// Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config
// e.g. Gumstix, current OpenZaurus, ...
USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203),
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [linux-usb-devel] [PATCH]: cdc-subset to support new vendor/product ID
2007-07-06 10:10 [PATCH]: cdc-subset to support new vendor/product ID jing xiang
@ 2007-07-06 20:43 ` David Brownell
2007-07-10 16:46 ` Jeff Garzik
1 sibling, 0 replies; 6+ messages in thread
From: David Brownell @ 2007-07-06 20:43 UTC (permalink / raw)
To: jing xiang; +Cc: netdev, linux-usb-devel, greg
On Friday 06 July 2007, jing xiang wrote:
> Hi,
>
> This patch is for cdc subset to support Mavell vendor/product ID.
>
> Jing Xiang
>
> Signed-off-by: Jing Xiang<everxiang@gmail.com>
Acked-by: David Brownell <dbrownell@users.sourceforge.net>
>
> diff -uNpr linux-2.6.21.5/driver/usb/net/cdc_subset.c
> linux-2.6.21.5.t/driver/usb/net/cdc_subset.c
> --- linux-2.6.21.5/driver/usb/net/cdc_subset.c 2007-06-14
> 18:34:05.000000000 +0800
> +++ linux-2.6.21.5.t/driver/usb/net/cdc_subset.c 2007-06-28
> 15:55:56.290598304 +0800
>
> @@ -305,6 +305,9 @@ static const struct usb_device_id produc
> USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
> .driver_info = (unsigned long) &blob_info,
> }, {
> + USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
> + .driver_info = (unsigned long) &blob_info,
> +}, {
> // Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config
> // e.g. Gumstix, current OpenZaurus, ...
> USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203),
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [linux-usb-devel] [PATCH]: cdc-subset to support new vendor/product ID
2007-07-06 10:10 [PATCH]: cdc-subset to support new vendor/product ID jing xiang
2007-07-06 20:43 ` [linux-usb-devel] " David Brownell
@ 2007-07-10 16:46 ` Jeff Garzik
2007-07-14 6:09 ` jing xiang
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Garzik @ 2007-07-10 16:46 UTC (permalink / raw)
To: jing xiang; +Cc: netdev, linux-usb-devel, greg, David Brownell
jing xiang wrote:
> Hi,
>
> This patch is for cdc subset to support Mavell vendor/product ID.
>
> Jing Xiang
>
> Signed-off-by: Jing Xiang<everxiang@gmail.com>
>
> diff -uNpr linux-2.6.21.5/driver/usb/net/cdc_subset.c
> linux-2.6.21.5.t/driver/usb/net/cdc_subset.c
> --- linux-2.6.21.5/driver/usb/net/cdc_subset.c 2007-06-14
> 18:34:05.000000000 +0800
> +++ linux-2.6.21.5.t/driver/usb/net/cdc_subset.c 2007-06-28
> 15:55:56.290598304 +0800
>
> @@ -305,6 +305,9 @@ static const struct usb_device_id produc
> USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
> .driver_info = (unsigned long) &blob_info,
> }, {
> + USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
> + .driver_info = (unsigned long) &blob_info,
> +}, {
> // Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config
> // e.g. Gumstix, current OpenZaurus, ...
> USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203),
patch failed to apply. Also, please move extra comments like "Hi," and
"Jing Xiang" after a "---" separator as described in
Documentation/SubmittingPatches, so that they are not copied verbatim
into the permanent kernel changelog.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [linux-usb-devel] [PATCH]: cdc-subset to support new vendor/product ID
2007-07-10 16:46 ` Jeff Garzik
@ 2007-07-14 6:09 ` jing xiang
2007-07-14 6:13 ` jing xiang
0 siblings, 1 reply; 6+ messages in thread
From: jing xiang @ 2007-07-14 6:09 UTC (permalink / raw)
To: Jeff Garzik; +Cc: netdev, linux-usb-devel, greg, David Brownell
This patch is for cdc subset to support Mavell vendor/product ID.
Signed-off-by: Jing Xiang <everxiang@gmail.com>
--- linux-2.6.21.5/drivers/usb/net/cdc_subset.c.orig 2007-07-14
13:57:37.543028144 +0800
+++ linux-2.6.21.5/drivers/usb/net/cdc_subset.c 2007-07-14
13:58:30.521974120 +0800
- Hide quoted text -
@@ -305,6 +305,9 @@ static const struct usb_device_id produc
USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
.driver_info = (unsigned long) &blob_info,
}, {
+ USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
+ .driver_info = (unsigned long) &blob_info,
+}, {
// Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config
// e.g. Gumstix, current OpenZaurus, ...
USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203),
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH]: cdc-subset to support new vendor/product ID
2007-07-14 6:09 ` jing xiang
@ 2007-07-14 6:13 ` jing xiang
2007-07-16 22:30 ` Jeff Garzik
0 siblings, 1 reply; 6+ messages in thread
From: jing xiang @ 2007-07-14 6:13 UTC (permalink / raw)
To: Jeff Garzik; +Cc: David Brownell, netdev, linux-usb-devel, greg
This patch is for cdc subset to support Mavell vendor/product ID.
Signed-off-by: Jing Xiang <everxiang@gmail.com>
--- linux-2.6.21.5/drivers/usb/net/cdc_subset.c.orig 2007-07-14
13:57:37.543028144 +0800
+++ linux-2.6.21.5/drivers/usb/net/cdc_subset.c 2007-07-14
13:58:30.521974120 +0800
@@ -305,6 +305,9 @@ static const struct usb_device_id produc
USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
.driver_info = (unsigned long) &blob_info,
}, {
+ USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
+ .driver_info = (unsigned long) &blob_info,
+}, {
// Linux Ethernet/RNDIS gadget on pxa210/25x/26x, second config
// e.g. Gumstix, current OpenZaurus, ...
USB_DEVICE_VER (0x0525, 0xa4a2, 0x0203, 0x0203),
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH]: cdc-subset to support new vendor/product ID
2007-07-14 6:13 ` jing xiang
@ 2007-07-16 22:30 ` Jeff Garzik
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2007-07-16 22:30 UTC (permalink / raw)
To: jing xiang; +Cc: David Brownell, netdev, linux-usb-devel, greg
jing xiang wrote:
> This patch is for cdc subset to support Mavell vendor/product ID.
>
> Signed-off-by: Jing Xiang <everxiang@gmail.com>
>
> --- linux-2.6.21.5/drivers/usb/net/cdc_subset.c.orig 2007-07-14
> 13:57:37.543028144 +0800
> +++ linux-2.6.21.5/drivers/usb/net/cdc_subset.c 2007-07-14
> 13:58:30.521974120 +0800
> @@ -305,6 +305,9 @@ static const struct usb_device_id produc
> USB_DEVICE (0x8086, 0x07d3), // "blob" bootloader
> .driver_info = (unsigned long) &blob_info,
> }, {
> + USB_DEVICE (0x1286, 0x8001), // "blob" bootloader
> + .driver_info = (unsigned long) &blob_info,
> +}, {
driver has moved to drivers/net/usb. applied manually
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-07-16 22:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-06 10:10 [PATCH]: cdc-subset to support new vendor/product ID jing xiang
2007-07-06 20:43 ` [linux-usb-devel] " David Brownell
2007-07-10 16:46 ` Jeff Garzik
2007-07-14 6:09 ` jing xiang
2007-07-14 6:13 ` jing xiang
2007-07-16 22:30 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).