diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-03-02 05:37:05 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-03-02 05:37:05 +0000 |
commit | 9e91847c9e6e7aa453de1b4e8105de8356a58ec9 (patch) | |
tree | c25b21c438a6bfae8a28f00336f6daa59d35074b /sys/dev/usb/usb_hub.c | |
parent | 2719e794c06a3a9aca8bd6446633d90efd96e6d5 (diff) | |
download | FreeBSD-src-9e91847c9e6e7aa453de1b4e8105de8356a58ec9.zip FreeBSD-src-9e91847c9e6e7aa453de1b4e8105de8356a58ec9.tar.gz |
Rename the ushub device class back to uhub as it was in the old usb stack,
moused(8) looks for "uhub/ums" to decide if needs to load the module.
Reported by: Garrett Cooper
Diffstat (limited to 'sys/dev/usb/usb_hub.c')
-rw-r--r-- | sys/dev/usb/usb_hub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_hub.c b/sys/dev/usb/usb_hub.c index dc6df8d..8f8eeb9 100644 --- a/sys/dev/usb/usb_hub.c +++ b/sys/dev/usb/usb_hub.c @@ -126,7 +126,7 @@ static devclass_t uhub_devclass; static driver_t uhub_driver = { - .name = "ushub", + .name = "uhub", .methods = (device_method_t[]){ DEVMETHOD(device_probe, uhub_probe), DEVMETHOD(device_attach, uhub_attach), @@ -144,8 +144,8 @@ static driver_t uhub_driver = .size = sizeof(struct uhub_softc) }; -DRIVER_MODULE(ushub, usbus, uhub_driver, uhub_devclass, 0, 0); -DRIVER_MODULE(ushub, ushub, uhub_driver, uhub_devclass, NULL, 0); +DRIVER_MODULE(uhub, usbus, uhub_driver, uhub_devclass, 0, 0); +DRIVER_MODULE(uhub, uhub, uhub_driver, uhub_devclass, NULL, 0); static void uhub_intr_callback(struct usb2_xfer *xfer) |