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/net/if_axe.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/net/if_axe.c')
-rw-r--r-- | sys/dev/usb/net/if_axe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/net/if_axe.c b/sys/dev/usb/net/if_axe.c index 0555e69..c840692 100644 --- a/sys/dev/usb/net/if_axe.c +++ b/sys/dev/usb/net/if_axe.c @@ -238,7 +238,7 @@ static driver_t axe_driver = { static devclass_t axe_devclass; -DRIVER_MODULE(axe, ushub, axe_driver, axe_devclass, NULL, 0); +DRIVER_MODULE(axe, uhub, axe_driver, axe_devclass, NULL, 0); DRIVER_MODULE(miibus, axe, miibus_driver, miibus_devclass, 0, 0); MODULE_DEPEND(axe, uether, 1, 1, 1); MODULE_DEPEND(axe, usb, 1, 1, 1); |