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.h | |
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.h')
-rw-r--r-- | sys/dev/usb/controller/uhci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/uhci.h b/sys/dev/usb/controller/uhci.h index 652c6dc..64a80cf 100644 --- a/sys/dev/usb/controller/uhci.h +++ b/sys/dev/usb/controller/uhci.h @@ -41,7 +41,7 @@ #define UHCI_MAX_DEVICES MIN(USB_MAX_DEVICES, 128) -/* PCI config registers */ +/* PCI config registers */ #define PCI_USBREV 0x60 /* USB protocol revision */ #define PCI_USB_REV_MASK 0xff #define PCI_USB_REV_PRE_1_0 0x00 |