* [PATCH] rtl8187: Add USB ID for Netgear WG111V3
@ 2008-08-11 4:27 Larry Finger
2008-08-11 21:36 ` matthieu Barthélemy
2008-08-11 21:43 ` matthieu Barthélemy
0 siblings, 2 replies; 4+ messages in thread
From: Larry Finger @ 2008-08-11 4:27 UTC (permalink / raw)
To: John W Linville, bonsouere; +Cc: linux-wireless
=46rom: matthieu Barth=C3=A9lemy <bonsouere@gmail.com>
Add the USB ID for a Netgear WG111v3.
Signed-off-by: matthieu Barth=C3=A9lemy <bonsouere@gmail.com>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
---
John,
Technically, this is 2.6.28 material, but is it possible to push
it for 2.6.27?
Larry
---
Index: wireless-testing/drivers/net/wireless/rtl8187_dev.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- wireless-testing.orig/drivers/net/wireless/rtl8187_dev.c
+++ wireless-testing/drivers/net/wireless/rtl8187_dev.c
@@ -37,6 +37,7 @@ static struct usb_device_id rtl8187_tabl
{USB_DEVICE(0x0bda, 0x8187), .driver_info =3D DEVICE_RTL8187},
{USB_DEVICE(0x0bda, 0x8189), .driver_info =3D DEVICE_RTL8187B},
{USB_DEVICE(0x0bda, 0x8197), .driver_info =3D DEVICE_RTL8187B},
+ {USB_DEVICE(0x0846, 0x4260), .driver_info =3D DEVICE_RTL8187B},
/* Netgear */
{USB_DEVICE(0x0846, 0x6100), .driver_info =3D DEVICE_RTL8187},
{USB_DEVICE(0x0846, 0x6a00), .driver_info =3D DEVICE_RTL8187},
--
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" 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] 4+ messages in thread
* Re: [PATCH] rtl8187: Add USB ID for Netgear WG111V3
2008-08-11 4:27 [PATCH] rtl8187: Add USB ID for Netgear WG111V3 Larry Finger
@ 2008-08-11 21:36 ` matthieu Barthélemy
2008-08-11 21:56 ` Larry Finger
2008-08-11 21:43 ` matthieu Barthélemy
1 sibling, 1 reply; 4+ messages in thread
From: matthieu Barthélemy @ 2008-08-11 21:36 UTC (permalink / raw)
To: Larry Finger; +Cc: John W Linville, linux-wireless
Thanks for your willingness to merge this patch. From what I know,
this device is very common so a lot of new users will potentially
benefit from the rtl8187B code.
Any news about a possible inclusion in 2.6.27?
Mathieu Barth=E9lemy
On 8/11/08, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> From: matthieu Barth=E9lemy <bonsouere@gmail.com>
>
> Add the USB ID for a Netgear WG111v3.
>
> Signed-off-by: matthieu Barth=E9lemy <bonsouere@gmail.com>
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> ---
>
> John,
>
> Technically, this is 2.6.28 material, but is it possible to push
> it for 2.6.27?
>
> Larry
> ---
>
> Index: wireless-testing/drivers/net/wireless/rtl8187_dev.c
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> --- wireless-testing.orig/drivers/net/wireless/rtl8187_dev.c
> +++ wireless-testing/drivers/net/wireless/rtl8187_dev.c
> @@ -37,6 +37,7 @@ static struct usb_device_id rtl8187_tabl
> {USB_DEVICE(0x0bda, 0x8187), .driver_info =3D DEVICE_RTL8187},
> {USB_DEVICE(0x0bda, 0x8189), .driver_info =3D DEVICE_RTL8187B},
> {USB_DEVICE(0x0bda, 0x8197), .driver_info =3D DEVICE_RTL8187B},
> + {USB_DEVICE(0x0846, 0x4260), .driver_info =3D DEVICE_RTL8187B},
> /* Netgear */
> {USB_DEVICE(0x0846, 0x6100), .driver_info =3D DEVICE_RTL8187},
> {USB_DEVICE(0x0846, 0x6a00), .driver_info =3D DEVICE_RTL8187},
>
--
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" 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] 4+ messages in thread
* Re: [PATCH] rtl8187: Add USB ID for Netgear WG111V3
2008-08-11 4:27 [PATCH] rtl8187: Add USB ID for Netgear WG111V3 Larry Finger
2008-08-11 21:36 ` matthieu Barthélemy
@ 2008-08-11 21:43 ` matthieu Barthélemy
1 sibling, 0 replies; 4+ messages in thread
From: matthieu Barthélemy @ 2008-08-11 21:43 UTC (permalink / raw)
To: Larry Finger; +Cc: John W Linville, linux-wireless
Thanks for your willingness to merge this patch. From what I know,
this device is very common so a lot of new users will potentially
benefit from the rtl8187B code.
Any news about a possible inclusion in 2.6.27?
Mathieu Barth=E9lemy
On 8/11/08, Larry Finger <Larry.Finger@lwfinger.net> wrote:
> From: matthieu Barth=E9lemy <bonsouere@gmail.com>
>
> Add the USB ID for a Netgear WG111v3.
>
> Signed-off-by: matthieu Barth=E9lemy <bonsouere@gmail.com>
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> ---
>
> John,
>
> Technically, this is 2.6.28 material, but is it possible to push
> it for 2.6.27?
>
> Larry
> ---
>
> Index: wireless-testing/drivers/net/wireless/rtl8187_dev.c
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> --- wireless-testing.orig/drivers/net/wireless/rtl8187_dev.c
> +++ wireless-testing/drivers/net/wireless/rtl8187_dev.c
> @@ -37,6 +37,7 @@ static struct usb_device_id rtl8187_tabl
> {USB_DEVICE(0x0bda, 0x8187), .driver_info =3D DEVICE_RTL8187},
> {USB_DEVICE(0x0bda, 0x8189), .driver_info =3D DEVICE_RTL8187B},
> {USB_DEVICE(0x0bda, 0x8197), .driver_info =3D DEVICE_RTL8187B},
> + {USB_DEVICE(0x0846, 0x4260), .driver_info =3D DEVICE_RTL8187B},
> /* Netgear */
> {USB_DEVICE(0x0846, 0x6100), .driver_info =3D DEVICE_RTL8187},
> {USB_DEVICE(0x0846, 0x6a00), .driver_info =3D DEVICE_RTL8187},
>
--
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" 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] 4+ messages in thread
* Re: [PATCH] rtl8187: Add USB ID for Netgear WG111V3
2008-08-11 21:36 ` matthieu Barthélemy
@ 2008-08-11 21:56 ` Larry Finger
0 siblings, 0 replies; 4+ messages in thread
From: Larry Finger @ 2008-08-11 21:56 UTC (permalink / raw)
To: matthieu Barthélemy; +Cc: John W Linville, linux-wireless
matthieu Barth=E9lemy wrote:
> Thanks for your willingness to merge this patch. From what I know,
> this device is very common so a lot of new users will potentially
> benefit from the rtl8187B code.
> Any news about a possible inclusion in 2.6.27?
That decision will rest with John Linville. At this stage, only bug=20
fixes are supposed to be sent to 2.6.27. New features, such as adding=20
a new device ID, are supposed to wait for 2.6.26; however, since this=20
is a one-liner with no possible unintended consequences, it may be=20
pushed to 2.6.27.
John has been on holiday celebrating his 10'th wedding anniversary,=20
and his mailbox is certainly very full. It will take a few days before=20
we hear what he decides.
Larry
--
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" 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] 4+ messages in thread
end of thread, other threads:[~2008-08-11 21:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-11 4:27 [PATCH] rtl8187: Add USB ID for Netgear WG111V3 Larry Finger
2008-08-11 21:36 ` matthieu Barthélemy
2008-08-11 21:56 ` Larry Finger
2008-08-11 21:43 ` matthieu Barthélemy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.