summaryrefslogtreecommitdiff
path: root/wcte11xp.c
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-17 01:58:09 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-17 01:58:09 +0000
commit221e76d95b698c6d22a843c12604ca0c1f57a239 (patch)
tree44139fffea4e1208dffe89c2251077eb0664c391 /wcte11xp.c
parent4ab4a9c64f02cf5e2915ba12833cba9cf76788c1 (diff)
all of the fixes for 2.6 from HEAD ... I think things are calm now
git-svn-id: http://svn.digium.com/svn/zaptel/branches/v1-0@562 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wcte11xp.c')
-rwxr-xr-xwcte11xp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/wcte11xp.c b/wcte11xp.c
index 4e6e616..46a49ff 100755
--- a/wcte11xp.c
+++ b/wcte11xp.c
@@ -39,6 +39,9 @@
#else
#include <linux/zaptel.h>
#endif
+#ifdef LINUX26
+#include <linux/moduleparam.h>
+#endif
#include "wct4xxp.h" /* For certain definitions */
@@ -1554,11 +1557,19 @@ static void __exit t1xxp_cleanup(void)
pci_unregister_driver(&t1xxp_driver);
}
+#ifdef LINUX26
+module_param(alarmdebounce, int, 0600);
+module_param(loopback, int, 0600);
+module_param(t1e1override, int, 0600);
+module_param(clockextra, int, 0600);
+module_param(debug, int, 0600);
+#else
MODULE_PARM(alarmdebounce, "i");
MODULE_PARM(loopback, "i");
MODULE_PARM(t1e1override, "i");
MODULE_PARM(clockextra, "i");
MODULE_PARM(debug, "i");
+#endif
MODULE_DESCRIPTION("Wildcard T100P/E100P Zaptel Driver");
MODULE_AUTHOR("Mark Spencer <markster@linux-support.net>");
#ifdef MODULE_LICENSE