diff mbox

[1/1] ipheth: add support for iPad

Message ID 1340577468-3298-1-git-send-email-rainbow@irh.it
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

rainbow June 24, 2012, 10:37 p.m. UTC
This adds support for the iPad to the ipheth driver.
(product id = 0x129a)

Signed-off-by: rainbow <rainbow@irh.it>
---
 drivers/net/usb/ipheth.c |    5 +++++
 1 file changed, 5 insertions(+)

Comments

Jesper Juhl June 25, 2012, 12:09 a.m. UTC | #1
On Mon, 25 Jun 2012, rainbow wrote:

> This adds support for the iPad to the ipheth driver.
> (product id = 0x129a)
> 
> Signed-off-by: rainbow <rainbow@irh.it>

It is usually very much prefered that people use their real names in 
Signed-off-by: lines.

Please consider re-submitting using your real name.
David Miller June 25, 2012, 2:53 a.m. UTC | #2
From: Jesper Juhl <jj@chaosbits.net>
Date: Mon, 25 Jun 2012 02:09:22 +0200 (CEST)

> On Mon, 25 Jun 2012, rainbow wrote:
> 
>> This adds support for the iPad to the ipheth driver.
>> (product id = 0x129a)
>> 
>> Signed-off-by: rainbow <rainbow@irh.it>
> 
> It is usually very much prefered that people use their real names in 
> Signed-off-by: lines.
> 
> Please consider re-submitting using your real name.

Indeed.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
rainbow June 25, 2012, 7:03 a.m. UTC | #3
=- Jesper Juhl wrote on Mon 25.Jun'12 at  2:09:22 +0200 -=

> On Mon, 25 Jun 2012, rainbow wrote:
> 
> > This adds support for the iPad to the ipheth driver.
> > (product id = 0x129a)
> > 
> > Signed-off-by: rainbow <rainbow@irh.it>
> 
> It is usually very much prefered that people use their real names in 
> Signed-off-by: lines.

Sorry.
I have resubmitted.

/davide

> 
> Please consider re-submitting using your real name.
> 
> -- 
> Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
> Don't top-post http://www.catb.org/jargon/html/T/top-post.html
> Plain text mails only, please.
>
diff mbox

Patch

diff --git a/drivers/net/usb/ipheth.c b/drivers/net/usb/ipheth.c
index 964031e..9c98449 100644
--- a/drivers/net/usb/ipheth.c
+++ b/drivers/net/usb/ipheth.c
@@ -59,6 +59,7 @@ 
 #define USB_PRODUCT_IPHONE_3G   0x1292
 #define USB_PRODUCT_IPHONE_3GS  0x1294
 #define USB_PRODUCT_IPHONE_4	0x1297
+#define USB_PRODUCT_IPAD 0x129a
 #define USB_PRODUCT_IPHONE_4_VZW 0x129c
 #define USB_PRODUCT_IPHONE_4S	0x12a0
 
@@ -101,6 +102,10 @@  static struct usb_device_id ipheth_table[] = {
 		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS,
 		IPHETH_USBINTF_PROTO) },
 	{ USB_DEVICE_AND_INTERFACE_INFO(
+		USB_VENDOR_APPLE, USB_PRODUCT_IPAD,
+		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS,
+		IPHETH_USBINTF_PROTO) },
+	{ USB_DEVICE_AND_INTERFACE_INFO(
 		USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_4_VZW,
 		IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS,
 		IPHETH_USBINTF_PROTO) },