Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758579AbZGILQL (ORCPT ); Thu, 9 Jul 2009 07:16:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756285AbZGILP4 (ORCPT ); Thu, 9 Jul 2009 07:15:56 -0400 Received: from mail-ew0-f226.google.com ([209.85.219.226]:45770 "EHLO mail-ew0-f226.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756242AbZGILPz (ORCPT ); Thu, 9 Jul 2009 07:15:55 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=fhF31749d4UhWtfIYYogzefazPjajyMCDlVnJumJdgXAH7xOkgDPs/gu6b18jLvl70 OjPzV5GqK7lkelTboNncGjJ5ucAiIOPFwUc+qHE/HEVhiQTuqX2dVMPft03D7xT48RKq rFMDRziuHouoHBm0pPCgUHNXgM8QilUcKRXHc= Message-ID: <4A55D123.5090802@gmail.com> Date: Thu, 09 Jul 2009 13:14:43 +0200 From: Marcin Slusarz User-Agent: Thunderbird 2.0.0.22 (X11/20090605) MIME-Version: 1.0 To: Hin-Tak Leung CC: Larry Finger , "John W. Linville" , Linux wireless , Przemyslaw Kulczycki , LKML , =?ISO-8859-1?Q?G=E1bor_Stefanik?= Subject: Re: [PATCH] wireless: fix supported cards for rtl8187 References: <4A54FB81.30302@gmail.com> <3ace41890907081449m3ad6c4fdt55781848eedaec1e@mail.gmail.com> <4A551B43.3020104@gmail.com> <3ace41890907082118h52764c98i7ebd9365bcd69b2c@mail.gmail.com> <4A5575C1.8090403@lwfinger.net> <3ace41890907090347m1f337731rb09b90327664ed5@mail.gmail.com> In-Reply-To: <3ace41890907090347m1f337731rb09b90327664ed5@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2972 Lines: 77 Hin-Tak Leung pisze: > 2009/7/9 Larry Finger : >> Hin-Tak Leung wrote: >>> if they are not labelled v1/v2/v3 as such, it may be more >>> useful/informative to change to >>> >>> [some variant of ] ... [(other variants are supported by the >>> rt2070/rt3070 modules)] >>> >>> instead of just adding [v2] to the end. >> I don't know about the box as I bought mine used on Ebay, but the >> label on the device clearly states that it is a WG111v2. >> >> Larry >> >> > > But that's a Netgear WG111v2 ? We are talking about Linksys > WUSB54GC-EU and its v1/v2/v3 . I am just thinking that if it is for > informative purposes (for those who actually selectively build their > kernel modules), adding a bit more info, such as suggesting to use > rt73usb/rt2070/rt3070 modules, won't hurt. > > Incidentally I like to know a bit more about this patch - presumably > Marcin has such a device? I am also a little curious, as this commit > should be accompanied by a corresponding update in another Kconfig > which supports the device? I am not trying to be picky, but for an > informative (non-code-changing) patch, it can be more informative. I have a v3 device and this driver does not support it. Below is the commit which added the string my patch corrects. I've sent yesterday another patch which adds support for WUSB54GC v3 to the rt3070 driver. commit aeeab4ff06b8e29cfe2fe730ba626f7e2487ba03 Author: John W. Linville Date: Wed May 27 09:21:57 2009 +0200 rtl8187: add USB ID for Linksys WUSB54GC-EU v2 USB wifi dongle http://bugzilla.kernel.org/show_bug.cgi?id=13383 Reported-by: Przemyslaw Kulczycki Signed-off-by: John W. Linville diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig index 8a08235..3d94e7d 100644 --- a/drivers/net/wireless/Kconfig +++ b/drivers/net/wireless/Kconfig @@ -430,6 +430,7 @@ config RTL8187 ASUS P5B Deluxe Toshiba Satellite Pro series of laptops Asus Wireless Link + Linksys WUSB54GC-EU Thanks to Realtek for their support! diff --git a/drivers/net/wireless/rtl818x/rtl8187_dev.c b/drivers/net/wireless/rtl818x/rtl8187_dev.c index bac6cfb..d51ba0a 100644 --- a/drivers/net/wireless/rtl818x/rtl8187_dev.c +++ b/drivers/net/wireless/rtl818x/rtl8187_dev.c @@ -71,6 +71,8 @@ static struct usb_device_id rtl8187_table[] __devinitdata = { {USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187}, /* AirLive */ {USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187}, + /* Linksys */ + {USB_DEVICE(0x1737, 0x0073), .driver_info = DEVICE_RTL8187B}, {} }; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/