From owner-freebsd-current@FreeBSD.ORG Wed Jun 11 22:19:05 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADDD137B401 for ; Wed, 11 Jun 2003 22:19:05 -0700 (PDT) Received: from ion.gank.org (ion.gank.org [198.78.66.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E9C643FBF for ; Wed, 11 Jun 2003 22:19:03 -0700 (PDT) (envelope-from craig@xfoil.gank.org) Received: from localhost (ion.gank.org [198.78.66.164]) by ion.gank.org (GankMail) with ESMTP id 7E4692B2F1 for ; Thu, 12 Jun 2003 00:19:02 -0500 (CDT) Received: from ion.gank.org ([198.78.66.164]) by localhost (ion.gank.org [198.78.66.164]) (amavisd-new, port 10024) with LMTP id 65180-04-4 for ; Thu, 12 Jun 2003 00:19:02 -0500 (CDT) Received: from aldaris2.auir.gank.org (dsl081-113-221.dfw1.dsl.speakeasy.net [64.81.113.221]) by ion.gank.org (GankMail) with ESMTP id A6CB42A9D3 for ; Thu, 12 Jun 2003 00:19:01 -0500 (CDT) From: Craig Boston To: current@FreeBSD.org Date: Thu, 12 Jun 2003 00:18:59 -0500 User-Agent: KMail/1.5.2 References: <1055260269.91337.127.camel@owen1492.uf.corelab.com> <20030612002139.GT26807@cicely12.cicely.de> <200306112244.10466.craig@xfoil.gank.org> In-Reply-To: <200306112244.10466.craig@xfoil.gank.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200306120018.59959.craig@xfoil.gank.org> Subject: Re: *IT WORKS* Re: CardBus USB 2.0 Controller (NEC uPD) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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, 12 Jun 2003 05:19:06 -0000 Cut-and-paste of the patch since the attachment disappeared... Probably won't apply cleanly because of tabs. --- ohci_pci.c.orig 2003-06-11 22:32:42.000000000 -0500 +++ ohci_pci.c 2003-06-11 22:01:43.000000000 -0500 @@ -173,6 +173,8 @@ /* XXX where does it say so in the spec? */ sc->sc_bus.usbrev = USBREV_1_0; + pci_enable_busmaster(self); + rid = PCI_CBMEM; sc->io_res = bus_alloc_resource(self, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE); --- ehci_pci.c.orig 2003-06-11 22:32:36.000000000 -0500 +++ ehci_pci.c 2003-06-11 22:33:08.000000000 -0500 @@ -158,6 +158,8 @@ break; } + pci_enable_busmaster(self); + rid = PCI_CBMEM; sc->io_res = bus_alloc_resource(self, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE);