aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/ulpt.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-11-08 07:10:48 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-11-08 07:10:48 +0000
commitbda20b64e4cecefbaa90ecea08a7897a6d351362 (patch)
tree3e36962cd7620574081069101302fd6fad6cee3d /sys/dev/usb/ulpt.c
parent30d5764da7739bfb6c944410cbc8d700502cf302 (diff)
downloadsrc-bda20b64e4cecefbaa90ecea08a7897a6d351362.tar.gz
src-bda20b64e4cecefbaa90ecea08a7897a6d351362.zip
ulpt.c and ums.c already uses make_dev(), so there's no need to use the
(presently broken) DEV_DRIVER_MODULE(). Use DRIVER_MODULE() directly.
Notes
Notes: svn path=/head/; revision=52993
Diffstat (limited to 'sys/dev/usb/ulpt.c')
-rw-r--r--sys/dev/usb/ulpt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/ulpt.c b/sys/dev/usb/ulpt.c
index 021e58fa8c4b..4b3febdd2897 100644
--- a/sys/dev/usb/ulpt.c
+++ b/sys/dev/usb/ulpt.c
@@ -581,6 +581,5 @@ ieee1284_print_id(str)
#endif
#if defined(__FreeBSD__)
-DEV_DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass,
- ulpt_cdevsw, usbd_driver_load, 0);
+DRIVER_MODULE(ulpt, uhub, ulpt_driver, ulpt_devclass, usbd_driver_load, 0);
#endif