diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-04-06 00:22:49 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-04-06 00:22:49 +0000 |
commit | bc1f34ac24682020347369ad5489ddc8676c8684 (patch) | |
tree | 003eb8e89f0e84898017ea74643842a05bc658c3 /sys/dev/usb/controller/uhci.c | |
parent | 6f5bda37903208bc8a3c7edbc195e9db50cb271c (diff) | |
download | FreeBSD-src-bc1f34ac24682020347369ad5489ddc8676c8684.zip FreeBSD-src-bc1f34ac24682020347369ad5489ddc8676c8684.tar.gz |
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
Diffstat (limited to 'sys/dev/usb/controller/uhci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/uhci.c b/sys/dev/usb/controller/uhci.c index 59e2986..580f907 100644 --- a/sys/dev/usb/controller/uhci.c +++ b/sys/dev/usb/controller/uhci.c @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); * Handles e.g. PIIX3 and PIIX4. * * UHCI spec: http://developer.intel.com/design/USB/UHCI11D.htm - * USB spec: http://www.usb.org/developers/docs/usbspec.zip + * USB spec: http://www.usb.org/developers/docs/usbspec.zip * PIIXn spec: ftp://download.intel.com/design/intarch/datashts/29055002.pdf * ftp://download.intel.com/design/intarch/datashts/29056201.pdf */ |