diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-05-20 19:52:04 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-05-20 19:52:04 +0000 |
commit | 30af12a295130c788ef277693d417e70475fc53f (patch) | |
tree | aed2a2c020ebc9418fb8a05d8f4de3b6ba631c30 /sys/dev | |
parent | f8d64a0d5d9f4e328ee3d40cc714ee5f4c11d6f4 (diff) | |
download | FreeBSD-src-30af12a295130c788ef277693d417e70475fc53f.zip FreeBSD-src-30af12a295130c788ef277693d417e70475fc53f.tar.gz |
Add comment about split in driver
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/ohci_pci.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci_pci.c b/sys/dev/usb/ohci_pci.c index 45add26..cce758c 100644 --- a/sys/dev/usb/ohci_pci.c +++ b/sys/dev/usb/ohci_pci.c @@ -41,9 +41,14 @@ * USB Open Host Controller driver. * * OHCI spec: http://www.intel.com/design/usb/ohci11d.pdf - * USB spec: http://www.teleport.com/cgi-bin/mailmerge.cgi/~usb/cgiform.tpl */ +/* The low level controller code for OHCI has been split into + * PCI probes and OHCI specific code. This was done to facilitate the + * sharing of code between *BSD's + */ + + #include "opt_bus.h" #include <sys/param.h> |