netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
@ 2012-09-17 19:23 Søren Holm
  2012-09-18  5:41 ` Christian Riesch
  0 siblings, 1 reply; 7+ messages in thread
From: Søren Holm @ 2012-09-17 19:23 UTC (permalink / raw)
  To: netdev; +Cc: Søren Holm, stable

Signed-off-by: Søren Holm <sgh@sgh.dk>
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

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

* Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-17 19:23 [PATCH] asix: Support DLink DUB-E100 H/W Ver C1 Søren Holm
@ 2012-09-18  5:41 ` Christian Riesch
  2012-09-18  7:49   ` Søren Holm
  2012-09-18  7:50   ` Søren Holm
  0 siblings, 2 replies; 7+ messages in thread
From: Christian Riesch @ 2012-09-18  5:41 UTC (permalink / raw)
  To: Søren Holm; +Cc: netdev, stable

Hi Søren,

On Mon, Sep 17, 2012 at 9:23 PM, Søren Holm <sgh@sgh.dk> wrote:
> Signed-off-by: Søren Holm <sgh@sgh.dk>
> 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

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

* Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-18  5:41 ` Christian Riesch
@ 2012-09-18  7:49   ` Søren Holm
  2012-09-18  8:21     ` Christian Riesch
  2012-09-18  7:50   ` Søren Holm
  1 sibling, 1 reply; 7+ messages in thread
From: Søren Holm @ 2012-09-18  7:49 UTC (permalink / raw)
  To: Christian Riesch; +Cc: netdev, stable

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

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

* [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-18  5:41 ` Christian Riesch
  2012-09-18  7:49   ` Søren Holm
@ 2012-09-18  7:50   ` Søren Holm
  2012-09-19 21:21     ` David Miller
  1 sibling, 1 reply; 7+ messages in thread
From: Søren Holm @ 2012-09-18  7:50 UTC (permalink / raw)
  To: netdev; +Cc: Søren Holm, stable

Signed-off-by: Søren Holm <sgh@sgh.dk>
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

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

* Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-18  7:49   ` Søren Holm
@ 2012-09-18  8:21     ` Christian Riesch
  2012-09-18  8:40       ` Søren Holm
  0 siblings, 1 reply; 7+ messages in thread
From: Christian Riesch @ 2012-09-18  8:21 UTC (permalink / raw)
  To: Søren Holm; +Cc: netdev, stable

On Tue, Sep 18, 2012 at 9:49 AM, Søren Holm <sgh@sgh.dk> wrote:
> 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.

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

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

* Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-18  8:21     ` Christian Riesch
@ 2012-09-18  8:40       ` Søren Holm
  0 siblings, 0 replies; 7+ messages in thread
From: Søren Holm @ 2012-09-18  8:40 UTC (permalink / raw)
  To: Christian Riesch; +Cc: netdev, stable

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

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

* Re: [PATCH] asix: Support DLink DUB-E100 H/W Ver C1
  2012-09-18  7:50   ` Søren Holm
@ 2012-09-19 21:21     ` David Miller
  0 siblings, 0 replies; 7+ messages in thread
From: David Miller @ 2012-09-19 21:21 UTC (permalink / raw)
  To: sgh; +Cc: netdev, stable

From: Søren Holm <sgh@sgh.dk>
Date: Tue, 18 Sep 2012 09:50:57 +0200

> Signed-off-by: Søren Holm <sgh@sgh.dk>

Applied, thanks.

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

end of thread, other threads:[~2012-09-19 21:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-17 19:23 [PATCH] asix: Support DLink DUB-E100 H/W Ver C1 Søren Holm
2012-09-18  5:41 ` Christian Riesch
2012-09-18  7:49   ` Søren Holm
2012-09-18  8:21     ` Christian Riesch
2012-09-18  8:40       ` Søren Holm
2012-09-18  7:50   ` Søren Holm
2012-09-19 21:21     ` David Miller

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