[PATCH] asix: Support DLink DUB-E100 H/W Ver C1

Subsystems: networking drivers, the rest, usb networking drivers

STALE5102d

7 messages, 3 authors, 2012-09-19 · open the first message on its own page

[PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Søren Holm <hidden>
Date: 2012-09-17 19:31:17

Signed-off-by: Søren Holm <redacted>
Cc: stable@vger.kernel.org
---
 drivers/net/usb/asix.c |    4 ++++
 1 file changed, 4 insertions(+)
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index 3ae80ec..12f372e 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -1604,6 +1604,10 @@ static const struct usb_device_id	products [] = {
 	USB_DEVICE (0x2001, 0x3c05),
 	.driver_info = (unsigned long) &ax88772_info,
 }, {
+	// DLink DUB-E100 H/W Ver C1
+	USB_DEVICE (0x2001, 0x1a02),
+	.driver_info = (unsigned long) &ax88772_info,
+}, {
 	// Linksys USB1000
 	USB_DEVICE (0x1737, 0x0039),
 	.driver_info = (unsigned long) &ax88178_info,
-- 
1.7.10.4

Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Christian Riesch <hidden>
Date: 2012-09-18 05:41:12

Hi Søren,

On Mon, Sep 17, 2012 at 9:23 PM, Søren Holm [off-list ref] wrote:
quoted hunk
Signed-off-by: Søren Holm <redacted>
Cc: stable@vger.kernel.org
---
 drivers/net/usb/asix.c |    4 ++++
 1 file changed, 4 insertions(+)
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index 3ae80ec..12f372e 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -1604,6 +1604,10 @@ static const struct usb_device_id        products [] = {
        USB_DEVICE (0x2001, 0x3c05),
        .driver_info = (unsigned long) &ax88772_info,
 }, {
+       // DLink DUB-E100 H/W Ver C1
+       USB_DEVICE (0x2001, 0x1a02),
+       .driver_info = (unsigned long) &ax88772_info,
+}, {
This will not apply to recent kernels, drivers/net/usb/asix.c has been
split into several files, please make these changes in
drivers/net/usb/asix_devices.c.

Regards, Christian
        // Linksys USB1000
        USB_DEVICE (0x1737, 0x0039),
        .driver_info = (unsigned long) &ax88178_info,
--
1.7.10.4

--
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

[PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Søren Holm <hidden>
Date: 2012-09-18 08:03:18

Signed-off-by: Søren Holm <redacted>
Cc: stable@vger.kernel.org
---
 drivers/net/usb/asix_devices.c |    4 ++++
 1 file changed, 4 insertions(+)
diff --git a/drivers/net/usb/asix_devices.c b/drivers/net/usb/asix_devices.c
index 4fd48df..32e31c5 100644
--- a/drivers/net/usb/asix_devices.c
+++ b/drivers/net/usb/asix_devices.c
@@ -962,6 +962,10 @@ static const struct usb_device_id	products [] = {
 	USB_DEVICE (0x2001, 0x3c05),
 	.driver_info = (unsigned long) &ax88772_info,
 }, {
+       // DLink DUB-E100 H/W Ver C1
+       USB_DEVICE (0x2001, 0x1a02),
+       .driver_info = (unsigned long) &ax88772_info,
+}, {
 	// Linksys USB1000
 	USB_DEVICE (0x1737, 0x0039),
 	.driver_info = (unsigned long) &ax88178_info,
-- 
1.7.10.4

Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Søren Holm <hidden>
Date: 2012-09-18 08:03:21

Tirsdag den 18. september 2012 07:41:11 skrev Christian Riesch:
This will not apply to recent kernels, drivers/net/usb/asix.c has been
split into several files, please make these changes in
drivers/net/usb/asix_devices.c.
I'll do that. The previous patch applies to the 3.5.x stable series if it get 
accepted there.

Thanks for the feedback.

-- 
Søren Holm

Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Christian Riesch <hidden>
Date: 2012-09-18 08:21:19

On Tue, Sep 18, 2012 at 9:49 AM, Søren Holm [off-list ref] wrote:
Tirsdag den 18. september 2012 07:41:11 skrev Christian Riesch:
quoted
This will not apply to recent kernels, drivers/net/usb/asix.c has been
split into several files, please make these changes in
drivers/net/usb/asix_devices.c.
I'll do that. The previous patch applies to the 3.5.x stable series if it get
accepted there.
IIRC this is not how it works. Your patch must go into the current
mainline kernel first (via net or net-next) before, then it will be
backported to the stable series.Therefore you must always send patches
that apply to net, or net-next...
Christian

Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: Søren Holm <hidden>
Date: 2012-09-18 08:40:50

Tirsdag den 18. september 2012 10:21:17 skrev Christian Riesch:
IIRC this is not how it works. Your patch must go into the current
mainline kernel first (via net or net-next) before, then it will be
backported to the stable series.Therefore you must always send patches
that apply to net, or net-next...
Christian
I'm aware of that now, thanks :)

-- 
Søren Holm

Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1

From: David Miller <davem@davemloft.net>
Date: 2012-09-19 21:21:59

From: Søren Holm <redacted>
Date: Tue, 18 Sep 2012 09:50:57 +0200
Signed-off-by: Søren Holm <redacted>
Applied, thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help