diff options
author | Andrew Thompson <thompsa@FreeBSD.org> | 2010-09-01 23:47:53 +0000 |
---|---|---|
committer | Andrew Thompson <thompsa@FreeBSD.org> | 2010-09-01 23:47:53 +0000 |
commit | 910cb8feb94f25e1ad5446f771445c2a3f97a845 (patch) | |
tree | 7a1bc3589c16416a0d46c9217730539a6e4e7b98 /sys/dev/usb/input/atp.c | |
parent | 7723fa2e04d8403a075a1764300cb2e5a694799b (diff) | |
download | src-910cb8feb94f25e1ad5446f771445c2a3f97a845.tar.gz src-910cb8feb94f25e1ad5446f771445c2a3f97a845.zip |
Add missing MODULE_VERSION() definitions, this resolves problems around
duplicate module loads.
PR: usb/125736
Submitted by: danger, mm
Reviewed by: hselasky
Notes
Notes:
svn path=/head/; revision=212122
Diffstat (limited to 'sys/dev/usb/input/atp.c')
-rw-r--r-- | sys/dev/usb/input/atp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/input/atp.c b/sys/dev/usb/input/atp.c index c0fe6d4b386e..1ec6f27b377a 100644 --- a/sys/dev/usb/input/atp.c +++ b/sys/dev/usb/input/atp.c @@ -2222,3 +2222,4 @@ static devclass_t atp_devclass; DRIVER_MODULE(atp, uhub, atp_driver, atp_devclass, NULL, 0); MODULE_DEPEND(atp, usb, 1, 1, 1); +MODULE_VERSION(atp, 1); |