summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2009-11-09 19:38:08 +0000
committerShaun Ruffell <sruffell@digium.com>2009-11-09 19:38:08 +0000
commit66f928fe9c04ee85a52a58eec4b80ac5100326a5 (patch)
tree3464ddee339829409d1d947212720ed507f6fe80
parentdcf556223a1443d56f633a83325e2a5950a3e724 (diff)
wct4xxp, wcte12xp: Don't export new module parms by default on the 2.2 branch
Most people are going to use the defaults, and this eliminates a potential interface change that would cause problems if someone wants to go between 2.2.1 and 2.2.0.4. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.2@7540 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/wct4xxp/base.c2
-rw-r--r--drivers/dahdi/wcte12xp/base.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dahdi/wct4xxp/base.c b/drivers/dahdi/wct4xxp/base.c
index acbdd73..809a122 100644
--- a/drivers/dahdi/wct4xxp/base.c
+++ b/drivers/dahdi/wct4xxp/base.c
@@ -4000,9 +4000,11 @@ module_param(noburst, int, 0600);
module_param(timingcable, int, 0600);
module_param(t1e1override, int, 0600);
module_param(alarmdebounce, int, 0600);
+#if 0 /* Don't export these parameters by default on the 2.2 branch */
module_param(losalarmdebounce, int, 0600);
module_param(aisalarmdebounce, int, 0600);
module_param(yelalarmdebounce, int, 0600);
+#endif
module_param(j1mode, int, 0600);
module_param(sigmode, int, 0600);
#ifdef VPM_SUPPORT
diff --git a/drivers/dahdi/wcte12xp/base.c b/drivers/dahdi/wcte12xp/base.c
index 5e0854f..80365f3 100644
--- a/drivers/dahdi/wcte12xp/base.c
+++ b/drivers/dahdi/wcte12xp/base.c
@@ -1932,9 +1932,11 @@ module_param(loopback, int, S_IRUGO | S_IWUSR);
module_param(t1e1override, int, S_IRUGO | S_IWUSR);
module_param(j1mode, int, S_IRUGO | S_IWUSR);
module_param(alarmdebounce, int, S_IRUGO | S_IWUSR);
+#if 0 /* Don't export these parameters by default on the 2.2 branch */
module_param(losalarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(aisalarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(yelalarmdebounce, int, S_IRUGO | S_IWUSR);
+#endif
module_param(latency, int, S_IRUGO | S_IWUSR);
#ifdef VPM_SUPPORT
module_param(vpmsupport, int, S_IRUGO | S_IWUSR);