From owner-freebsd-current@FreeBSD.ORG Thu Jun 3 15:57:04 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3165B1065686 for ; Thu, 3 Jun 2010 15:57:04 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe06.swip.net [212.247.154.161]) by mx1.freebsd.org (Postfix) with ESMTP id B2AE88FC17 for ; Thu, 3 Jun 2010 15:57:03 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=BgaHaSUmPskA:10 a=0qYQvVkOOIcA:10 a=8nJEP1OIZ-IA:10 a=M8b_wTzEtboA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=8kQB0OdkAAAA:8 a=kzPiI3ZxbBDRNV7ynagA:9 a=rNJi5IhWtpV5ubR3r2WEMKe3bOkA:4 a=wPNLvfGTeEIA:10 a=9aOQ2cSd83gA:10 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe06.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 1368324845; Thu, 03 Jun 2010 17:57:01 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Thu, 3 Jun 2010 17:54:17 +0200 User-Agent: KMail/1.12.4 (FreeBSD/8.0-STABLE; KDE/4.3.4; amd64; ; ) References: <201006031750.08693.hselasky@c2i.net> In-Reply-To: <201006031750.08693.hselasky@c2i.net> X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'(; _IjlA: hGE..Ew, XAQ*o#\/M~SC=S1-f9{EzRfT'|Hhll5Q]ha5Bt-s|oTlKMusi:1e[wJl}kd}GR Z0adGx-x_0zGbZj'e(Y[(UNle~)8CQWXW@:DX+9)_YlB[tIccCPN$7/L' MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201006031754.17053.hselasky@c2i.net> Cc: Marcelo/Porks , Garrett Cooper Subject: Re: Fwd: umodem (4) recognize a CDC-ACM device X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jun 2010 15:57:04 -0000 On Thursday 03 June 2010 17:50:08 Hans Petter Selasky wrote: > On Thursday 03 June 2010 16:22:33 Marcelo/Porks wrote: > > On Wed, Jun 2, 2010 at 1:25 PM, Hans Petter Selasky > > wrote: > > > Hi, > > > > > > The problem is that LOW speed does not support BULK transfers according > > > to the USB specification. I guess we could switch that support on, > > > though I'd rather stick with the spec. > > > > > > Try changing this line in: > > > > > > src/sys/dev/usb/usb_transfer.c > > > > > > [USB_SPEED_LOW] = 0, /* not supported */ > > > Into: > > > > > > [USB_SPEED_LOW] = 8, /* not supported according to > > > USB spec. */ > > > > Hi, Thanks again for the reply. > > > > I changed this line [1], but the result was the same: > > Hi, > > You also need to update this structure above: > > [UE_BULK] = { > [USB_SPEED_LOW] = {.fixed = {0, 0, 0, 0}}, /* invalid > */ > > Change it into: > > 8, 8, 8, 8, > Oops, that seems to be some old code. Forget that patch. I will have another look. And you are sure you built a new kernel and usb module with the initial patch above? --HPS