From owner-cvs-src-old@FreeBSD.ORG Mon Apr 6 00:23:07 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B3161065672 for ; Mon, 6 Apr 2009 00:23:07 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 73AB28FC15 for ; Mon, 6 Apr 2009 00:23:07 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n360N7Tk050863 for ; Mon, 6 Apr 2009 00:23:07 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n360N7se050862 for cvs-src-old@freebsd.org; Mon, 6 Apr 2009 00:23:07 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <200904060023.n360N7se050862@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Mon, 6 Apr 2009 00:22:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usb_bus.h usb_controller.h usb_core.h usb_device.c usb_hub.c usb_hub.h usb_request.c usb_transfer.c src/sys/dev/usb/controller at91dci.c at91dci.h atmegadci.c atmegadci.h ehci.c ehci.h musb_otg.c musb_otg.h ohci.c ohci.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Apr 2009 00:23:07 -0000 thompsa 2009-04-06 00:22:49 UTC FreeBSD src repository Modified files: sys/dev/usb usb_bus.h usb_controller.h usb_core.h usb_device.c usb_hub.c usb_hub.h usb_request.c usb_transfer.c sys/dev/usb/controller at91dci.c at91dci.h atmegadci.c atmegadci.h ehci.c ehci.h musb_otg.c musb_otg.h ohci.c ohci.h uhci.c uhci.h usb_controller.c uss820dci.c Log: SVN rev 190754 on 2009-04-06 00:22:49Z by thompsa Provide a better commit log for r190735, forced by making a whitespace change. Refactor how we interface with the root HUB. This is achieved by making a direct call from usb2_do_request to the host controller for root hub requests, this call will perform the controller specific register read/writes and return the error code. This cuts out a lot of code in the host controller files and saves one thread per USB bus. Submitted by: Hans Petter Selasky Revision Changes Path 1.10 +1 -1 src/sys/dev/usb/controller/at91dci.c 1.4 +2 -2 src/sys/dev/usb/controller/at91dci.h 1.14 +2 -3 src/sys/dev/usb/controller/atmegadci.c 1.4 +2 -2 src/sys/dev/usb/controller/atmegadci.h 1.11 +1 -1 src/sys/dev/usb/controller/ehci.c 1.5 +1 -1 src/sys/dev/usb/controller/ehci.h 1.10 +2 -2 src/sys/dev/usb/controller/musb_otg.c 1.3 +2 -2 src/sys/dev/usb/controller/musb_otg.h 1.9 +1 -1 src/sys/dev/usb/controller/ohci.c 1.4 +1 -1 src/sys/dev/usb/controller/ohci.h 1.8 +1 -1 src/sys/dev/usb/controller/uhci.c 1.4 +1 -1 src/sys/dev/usb/controller/uhci.h 1.10 +1 -1 src/sys/dev/usb/controller/usb_controller.c 1.12 +1 -1 src/sys/dev/usb/controller/uss820dci.c 1.6 +2 -2 src/sys/dev/usb/usb_bus.h 1.6 +1 -1 src/sys/dev/usb/usb_controller.h 1.11 +1 -2 src/sys/dev/usb/usb_core.h 1.23 +1 -1 src/sys/dev/usb/usb_device.c 1.11 +1 -1 src/sys/dev/usb/usb_hub.c 1.5 +1 -1 src/sys/dev/usb/usb_hub.h 1.12 +1 -1 src/sys/dev/usb/usb_request.c 1.11 +1 -1 src/sys/dev/usb/usb_transfer.c