diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-14 01:28:15 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-14 01:28:15 +0000 |
commit | 229f57eb8f306ebe3d4ad60839c54b642df32aa4 (patch) | |
tree | de317ce3b34a8a4f36c9ca5727d4488b93ea661c /sys/dev/usb/ucom.c | |
parent | cd40f4d28ab93dee00e802d75b820a19cf4eacb1 (diff) | |
download | FreeBSD-src-229f57eb8f306ebe3d4ad60839c54b642df32aa4.zip FreeBSD-src-229f57eb8f306ebe3d4ad60839c54b642df32aa4.tar.gz |
Corrected the latent fact that the uhub driver was providing a driver for
the usb device class instead of the uhub devclass. Only a problem with more
than one USB host controller.
Diffstat (limited to 'sys/dev/usb/ucom.c')
-rw-r--r-- | sys/dev/usb/ucom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 6772854..749cad4 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -135,5 +135,5 @@ ucom_detach(device_t self) #endif #if defined(__FreeBSD__) -DRIVER_MODULE(ucom, usb, ucom_driver, ucom_devclass, usbd_driver_load, 0); +DRIVER_MODULE(ucom, uhub, ucom_driver, ucom_devclass, usbd_driver_load, 0); #endif |