From owner-freebsd-current@FreeBSD.ORG Thu Jun 3 15:52:57 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 8DF0D106564A; Thu, 3 Jun 2010 15:52:57 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.swip.net [212.247.154.225]) by mx1.freebsd.org (Postfix) with ESMTP id DCE6A8FC1E; Thu, 3 Jun 2010 15:52:56 +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=OJSkIO69dOippDcgNdwA:9 a=QO6DzH1atqtZMrBCUQao4KT230EA:4 a=wPNLvfGTeEIA:10 a=9aOQ2cSd83gA:10 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 1363679182; Thu, 03 Jun 2010 17:52:54 +0200 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Thu, 3 Jun 2010 17:50:08 +0200 User-Agent: KMail/1.12.4 (FreeBSD/8.0-STABLE; KDE/4.3.4; amd64; ; ) References: <201006021825.25337.hselasky@c2i.net> In-Reply-To: X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'( =?iso-8859-1?q?=3B=5FIjlA=3A=0A=09hGE=2E=2EEw?=, =?iso-8859-1?q?XAQ*o=23=5C/M=7ESC=3DS1-f9=7BEzRfT=27=7CHhll5Q=5Dha5Bt-s=7Co?= =?iso-8859-1?q?TlKMusi=3A1e=5BwJl=7Dkd=7DGR=0A=09Z0adGx-x=5F0zGbZj=27e?=(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: <201006031750.08693.hselasky@c2i.net> Cc: Marcelo/Porks , Garrett Cooper , current@freebsd.org 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:52:57 -0000 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, :-) --HPS