summaryrefslogtreecommitdiff
path: root/xpp/xpp_usb.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-12-27 22:53:23 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-12-27 22:53:23 +0000
commitc66601cb786a5c0ba99c3996c70a8b13adb89b6a (patch)
treec0ffd9df3b27540ae5f45b22371ea2bb8747504b /xpp/xpp_usb.c
parent57465fb95e87c75408d80f759646da9b817abf0a (diff)
Merged revisions 1767 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ................ r1767 | kpfleming | 2006-12-27 16:49:37 -0600 (Wed, 27 Dec 2006) | 10 lines Merged revisions 1766 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1766 | kpfleming | 2006-12-27 16:47:19 -0600 (Wed, 27 Dec 2006) | 2 lines remove pointless duplication of ZAPTEL_VERSION that causes these modules to be rebuilt every time a commit is made to any part of Zaptel ........ ................ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1768 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'xpp/xpp_usb.c')
-rw-r--r--xpp/xpp_usb.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/xpp/xpp_usb.c b/xpp/xpp_usb.c
index 1d4b20e..c9e83a6 100644
--- a/xpp/xpp_usb.c
+++ b/xpp/xpp_usb.c
@@ -38,7 +38,6 @@
#include <asm/timex.h>
#include <linux/proc_fs.h>
#include <linux/usb.h>
-#include <version.h> /* For zaptel version */
#include "xpd.h"
#include "xproto.h"
#include "xbus-core.h"
@@ -861,7 +860,7 @@ int __init xpp_usb_init(void)
int result;
//xusb_t *xusb;
- INFO("%s revision %s\n", THIS_MODULE->name, ZAPTEL_VERSION);
+ INFO("%s\n", THIS_MODULE->name);
/* register this driver with the USB subsystem */
result = usb_register(&xusb_driver);
@@ -942,7 +941,6 @@ out:
MODULE_DESCRIPTION("XPP USB Driver");
MODULE_AUTHOR("Oron Peled <oron@actcom.co.il>");
MODULE_LICENSE("GPL");
-MODULE_VERSION(ZAPTEL_VERSION);
module_init(xpp_usb_init);
module_exit(xpp_usb_cleanup);