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/ehci.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/ehci.h')
-rw-r--r-- | sys/dev/usb/controller/ehci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/ehci.h b/sys/dev/usb/controller/ehci.h index d69891b..0f3580f 100644 --- a/sys/dev/usb/controller/ehci.h +++ b/sys/dev/usb/controller/ehci.h @@ -40,7 +40,7 @@ #define EHCI_MAX_DEVICES MIN(USB_MAX_DEVICES, 128) -/* PCI config registers */ +/* PCI config registers */ #define PCI_CBMEM 0x10 /* configuration base MEM */ #define PCI_INTERFACE_EHCI 0x20 #define PCI_USBREV 0x60 /* RO USB protocol revision */ |