The following reply was made to PR usb/164275; it has been noted by GNATS.

From: TAKANO Yuji (=?iso-2022-jp?B?GyRCJD8kKyROJGYhQSQ4GyhC?=)
 <takac...@running-dog.net>
To: hsela...@c2i.net
Cc: freebsd-usb@freebsd.org, free...@deadbeef.homeunix.com,
        freebsd-gnats-sub...@freebsd.org, takac...@running-dog.net,
        takac...@running-dog.net
Subject: Re: usb/164275: [patch][usbdevs][wlan] Patch for LOGITEC
 LAN-W300N/U2 (if_run)
Date: Fri, 20 Jan 2012 00:32:09 +0900 (JST)

 Hi. My name is Yuji TAKANO.
 
 So little to correct the spelling mistake.
 
 Thank you for this email.
 
 My patch was previously sent the wrong vendor name. I apologize very much.
 
 LOGITEC was not a LOGITECH.
 
 The following are the results of usbconfig.
 
 ---
 ugen2.2: <802.11 n WLAN Ralink> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) 
pwr=ON
 
   bLength = 0x0012 
   bDescriptorType = 0x0001 
   bcdUSB = 0x0200 
   bDeviceClass = 0x0000 
   bDeviceSubClass = 0x0000 
   bDeviceProtocol = 0x0000 
   bMaxPacketSize0 = 0x0040 
   idVendor = 0x0789 
   idProduct = 0x0166 
   bcdDevice = 0x0101 
   iManufacturer = 0x0001  <Ralink>
   iProduct = 0x0002  <802.11 n WLAN>
   iSerialNumber = 0x0003  <1.0>
   bNumConfigurations = 0x0001 
 ---
 
 The attached patch is correct.
 
 Thank you.
 
 From: Hans Petter Selasky <hsela...@c2i.net>$B$5$s(B
 > Hi Yuji,
 > 
 > Can you send output from usbconfig -d X.Y dump_device_desc for your LOGITECH 
 > WLAN device? There appears to be a similar device and I wonder if it is a 
 > clone or not.
 > 
 > Reference: usb/162712: added device on if_run.
 > 
 > --HPS
 > 
 > On Wednesday 18 January 2012 00:44:48 Kazuhito Kitta wrote:
 > > >Number:         164275
 > > >Category:       usb
 > > >Synopsis:       [patch][usbdevs][wlan] Patch for LOGITEC LAN-W300N/U2
 > > >(if_run) Confidential:   no
 > > >Severity:       non-critical
 > > >Priority:       low
 > > >Responsible:    freebsd-usb
 > > >State:          open
 > > >Quarter:
 > > >Keywords:
 > > >Date-Required:
 > > >Class:          sw-bug
 > > >Submitter-Id:   current-users
 > > >Arrival-Date:   Wed Jan 18 10:00:25 UTC 2012
 > > >Closed-Date:
 > > >Last-Modified:
 > > >Originator:     Kazuhito KITTA
 > > >Release:        FreeBSD 9.0-STABLE amd64
 > > >Organization:
 > > 
 > > >Environment:
 > > System: FreeBSD atom.kitta.homeip.net 9.0-STABLE FreeBSD 9.0-STABLE #5: Tue
 > > Jan 10 05:00:19 JST 2012
 > > r...@atom.kitta.homeip.net:/usr/obj/usr/src/sys/GENERIC amd64
 > > 
 > > >Description:
 > > mismatch Vendor ID for LOGITEC LAN-W300N/U2
 > > 
 > > # usbconfig -u 1 -a 2 dump_device_desc
 > > ugen1.2: at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON
 > > -- 8< snip 8< --
 > > idVendor = 0x0789
 > > idProduct = 0x0166
 > > 
 > > >How-To-Repeat:
 > > 
 > > >Fix:
 > > Please see the following patch.
 > > 
 > > --- LANW300NU2.patch begins here ---
 > > --- sys/dev/usb/usbdevs.orig       2012-01-17 14:39:10.000000000 +0900
 > > +++ sys/dev/usb/usbdevs    2012-01-17 14:39:57.000000000 +0900
 > > @@ -2088,7 +2088,6 @@
 > >  product LINKSYS4 WUSB600NV2       0x0079  WUSB600N v2
 > > 
 > >  /* Logitech products */
 > > -product LOGITECH LANW300NU2       0x0166  LAN-W300N/U2
 > >  product LOGITECH M2452            0x0203  M2452 keyboard
 > >  product LOGITECH M4848            0x0301  M4848 mouse
 > >  product LOGITECH PAGESCAN 0x040f  PageScan
 > > @@ -2120,6 +2119,7 @@
 > >  product LOGITEC RT2870_1  0x0162  RT2870
 > >  product LOGITEC RT2870_2  0x0163  RT2870
 > >  product LOGITEC RT2870_3  0x0164  RT2870
 > > +product LOGITEC LANW300NU2        0x0166  LAN-W300N/U2
 > > 
 > >  /* Longcheer Holdings, Ltd. products */
 > >  product LONGCHEER WM66            0x6061  Longcheer WM66 HSDPA
 > > --- sys/dev/usb/wlan/if_run.c.orig 2012-01-17 14:36:44.000000000 +0900
 > > +++ sys/dev/usb/wlan/if_run.c      2012-01-17 14:37:29.000000000 +0900
 > > @@ -208,7 +208,7 @@
 > >      RUN_DEV(LOGITEC,              RT2870_1),
 > >      RUN_DEV(LOGITEC,              RT2870_2),
 > >      RUN_DEV(LOGITEC,              RT2870_3),
 > > -    RUN_DEV(LOGITECH,             LANW300NU2),
 > > +    RUN_DEV(LOGITEC,              LANW300NU2),
 > >      RUN_DEV(MELCO,                RT2870_1),
 > >      RUN_DEV(MELCO,                RT2870_2),
 > >      RUN_DEV(MELCO,                WLIUCAG300N),
 > > --- LANW300NU2.patch ends here ---
 > > 
 > > >Release-Note:
 > > >Audit-Trail:
 > > 
 > > >Unformatted:
 > > _______________________________________________
 > > freebsd-usb@freebsd.org mailing list
 > > http://lists.freebsd.org/mailman/listinfo/freebsd-usb
 > > To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"
_______________________________________________
freebsd-usb@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"

Reply via email to