diff options
author | thompsa <thompsa@FreeBSD.org> | 2010-09-01 23:47:53 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2010-09-01 23:47:53 +0000 |
commit | bb06251a3b690fcc700e857bf3f756c4d0e07330 (patch) | |
tree | 7a1bc3589c16416a0d46c9217730539a6e4e7b98 /sys/dev/usb/serial/ubser.c | |
parent | bbb8b576331e93599eb9120a0444db481e4d6f88 (diff) | |
download | FreeBSD-src-bb06251a3b690fcc700e857bf3f756c4d0e07330.zip FreeBSD-src-bb06251a3b690fcc700e857bf3f756c4d0e07330.tar.gz |
Add missing MODULE_VERSION() definitions, this resolves problems around
duplicate module loads.
PR: usb/125736
Submitted by: danger, mm
Reviewed by: hselasky
Diffstat (limited to 'sys/dev/usb/serial/ubser.c')
-rw-r--r-- | sys/dev/usb/serial/ubser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/serial/ubser.c b/sys/dev/usb/serial/ubser.c index 3f2dc2d..be332c3 100644 --- a/sys/dev/usb/serial/ubser.c +++ b/sys/dev/usb/serial/ubser.c @@ -215,6 +215,7 @@ static driver_t ubser_driver = { DRIVER_MODULE(ubser, uhub, ubser_driver, ubser_devclass, NULL, 0); MODULE_DEPEND(ubser, ucom, 1, 1, 1); MODULE_DEPEND(ubser, usb, 1, 1, 1); +MODULE_VERSION(ubser, 1); static int ubser_probe(device_t dev) |