From owner-cvs-src-old@FreeBSD.ORG Wed Apr 22 17:08:30 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 38A7A1065673 for ; Wed, 22 Apr 2009 17:08:30 +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 0815E8FC17 for ; Wed, 22 Apr 2009 17:08:30 +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 n3MH8TaF073059 for ; Wed, 22 Apr 2009 17:08:29 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n3MH8Tpf073058 for cvs-src-old@freebsd.org; Wed, 22 Apr 2009 17:08:29 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <200904221708.n3MH8Tpf073058@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Wed, 22 Apr 2009 17:08:16 +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_dynamic.c usb_dynamic.h usb_handle_request.c usb_request.c usb_request.h src/sys/dev/usb/controller at91dci.c atmegadci.c ehci.c ehci.h musb_otg.c ohci.c ohci.h uhci.c uhci.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: Wed, 22 Apr 2009 17:08:30 -0000 thompsa 2009-04-22 17:08:16 UTC FreeBSD src repository Modified files: sys/dev/usb usb_bus.h usb_controller.h usb_core.h usb_device.c usb_dynamic.c usb_dynamic.h usb_handle_request.c usb_request.c usb_request.h sys/dev/usb/controller at91dci.c atmegadci.c ehci.c ehci.h musb_otg.c ohci.c ohci.h uhci.c uhci.h uss820dci.c sys/dev/usb/template usb_template.c Log: SVN rev 191402 on 2009-04-22 17:08:16Z by thompsa MFp4 //depot/projects/usb@160930 Change the roothub exec functions to take the usb request and data pointers directly rather than placing them on the parent bus struct. Submitted by: Hans Petter Selasky Revision Changes Path 1.12 +48 -42 src/sys/dev/usb/controller/at91dci.c 1.17 +48 -42 src/sys/dev/usb/controller/atmegadci.c 1.14 +55 -49 src/sys/dev/usb/controller/ehci.c 1.6 +0 -2 src/sys/dev/usb/controller/ehci.h 1.12 +48 -42 src/sys/dev/usb/controller/musb_otg.c 1.11 +52 -46 src/sys/dev/usb/controller/ohci.c 1.5 +0 -1 src/sys/dev/usb/controller/ohci.h 1.10 +56 -50 src/sys/dev/usb/controller/uhci.c 1.5 +0 -1 src/sys/dev/usb/controller/uhci.h 1.14 +48 -42 src/sys/dev/usb/controller/uss820dci.c 1.3 +4 -3 src/sys/dev/usb/template/usb_template.c 1.8 +0 -12 src/sys/dev/usb/usb_bus.h 1.7 +10 -10 src/sys/dev/usb/usb_controller.h 1.12 +4 -0 src/sys/dev/usb/usb_core.h 1.27 +2 -1 src/sys/dev/usb/usb_device.c 1.3 +4 -5 src/sys/dev/usb/usb_dynamic.c 1.2 +1 -4 src/sys/dev/usb/usb_dynamic.h 1.6 +4 -3 src/sys/dev/usb/usb_handle_request.c 1.13 +59 -56 src/sys/dev/usb/usb_request.c 1.5 +2 -2 src/sys/dev/usb/usb_request.h