Bug 13061 - Additional USB identifier for Otus driver [WN111v2]
Summary: Additional USB identifier for Otus driver [WN111v2]
Status: RESOLVED CODE_FIX
Alias: None
Product: Networking
Classification: Unclassified
Component: Wireless (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Greg Kroah-Hartman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-10 16:10 UTC by Daniele Napolitano
Modified: 2009-09-15 15:22 UTC (History)
4 users (show)

See Also:
Kernel Version: 2.6.29
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description Daniele Napolitano 2009-04-10 16:10:23 UTC
This is a patch for Otus driver that provide support for WN111v2 USB 802.11n adapter.

Sources tree: OAL/Otus/Linux

Signed-off-by: Daniele Napolitano <dnax88@gmail.com>
--- zdusb.h.orig	2009-04-10 17:48:17.620423000 +0200
+++ zdusb.h	2009-04-10 17:54:41.356419568 +0200
@@ -26,5 +26,9 @@
 

 #define VENDOR_DLINK            0x07D1  //Dlink

 #define PRODUCT_DWA160A         0x3C10

+
+#define VENDOR_NETGEAR          0x0846  //NetGear
+#define PRODUCT_WNDA3100        0x9010
+#define PRODUCT_WN111v2         0x9001
 

 #endif



Signed-off-by: Daniele Napolitano <dnax88@gmail.com>
--- zdusb.c.orig	2009-04-10 17:48:17.620423000 +0200
+++ zdusb.c	2009-04-10 17:53:15.316421516 +0200
@@ -36,7 +36,8 @@
 static struct usb_device_id zd1221_ids [] = {

 	{ USB_DEVICE(VENDOR_ATHR, PRODUCT_AR9170) },

         { USB_DEVICE(VENDOR_DLINK, PRODUCT_DWA160A) },

-	{ USB_DEVICE(0x0846, 0x9010) },

+	{ USB_DEVICE(VENDOR_NETGEAR, PRODUCT_WNDA3100) },
+	{ USB_DEVICE(VENDOR_NETGEAR, PRODUCT_WN111v2) },

 	{ }					/* Terminating entry */

 };
Comment 1 Andrew Morton 2009-04-10 21:01:02 UTC
Please submit patches via email, not via bugzilla.
Documentation/SubmittingPatches has some guidelines.

Suitable recipients for this patch are:

Greg KH <greg@kroah.com>
Andrew Morton <akpm@linux-foundation.org>
linux-kernel@vger.kernel.org

Thanks.
Comment 2 Daniele Napolitano 2009-04-11 16:26:05 UTC
I don't know the why of this policy...

However I've submit this patch to these recipients. Andrew, note that your email address reject any mail!
Comment 3 Andrew Morton 2009-04-11 18:55:59 UTC
> I don't know the why of this policy...

a) Everybody's tools are set up for processing patches over email.  When
the patch is in bugzilla there are many manual steps involved.

b) patches in bugzilla will not get the level of review which emailed patches receive.

c) patches in bugzilla probably can't be discovered via google searches.

> However I've submit this patch to these recipients. Andrew, note that your
> email address reject any mail!

That sounds bad.  Please send the bounce message to akpm@kernel.org.
Comment 4 Daniele Napolitano 2009-09-15 15:22:48 UTC
This bug is fixed, patch is in staging tree. However Otus driver will be deprecated in favor of ar9170 (when fully working).

Note You need to log in before you can comment on or make changes to this bug.