summaryrefslogtreecommitdiff
path: root/xpp/card_fxs.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-12-27 22:47:19 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-12-27 22:47:19 +0000
commit64127e55a027d4c409eed6026d4702e728ea2442 (patch)
tree0b6ec49294758e34880a14604fab085bd1fdaac0 /xpp/card_fxs.c
parentda9ec370fa6f53547064993972e0e645182b9bb8 (diff)
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/branches/1.2@1766 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'xpp/card_fxs.c')
-rw-r--r--xpp/card_fxs.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/xpp/card_fxs.c b/xpp/card_fxs.c
index b5c6538..5e5674b 100644
--- a/xpp/card_fxs.c
+++ b/xpp/card_fxs.c
@@ -24,7 +24,6 @@
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/delay.h>
-#include <version.h> /* For zaptel version */
#include "xpd.h"
#include "xproto.h"
#include "xpp_zap.h"
@@ -989,7 +988,7 @@ static int proc_xpd_register_read(char *page, char **start, off_t off, int count
int __init card_fxs_startup(void)
{
- INFO("%s revision %s\n", THIS_MODULE->name, ZAPTEL_VERSION);
+ INFO("%s\n", THIS_MODULE->name);
#ifdef POLL_DIGITAL_INPUTS
INFO("FEATURE: %s with DIGITAL INPUTS support (%s activated)\n",
THIS_MODULE->name, (poll_digital_inputs) ? "is" : "is not");
@@ -1008,7 +1007,6 @@ void __exit card_fxs_cleanup(void)
MODULE_DESCRIPTION("XPP FXS Card Driver");
MODULE_AUTHOR("Oron Peled <oron@actcom.co.il>");
MODULE_LICENSE("GPL");
-MODULE_VERSION(ZAPTEL_VERSION);
MODULE_ALIAS_XPD(XPD_TYPE_FXS);
module_init(card_fxs_startup);