summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2010-02-03 21:46:34 +0000
committerShaun Ruffell <sruffell@digium.com>2010-02-03 21:46:34 +0000
commitaeee4d888dc689a885187d77488d6754ae853dce (patch)
tree0a8ae266c66a6b6f06b58ed3204b7aa144705748
parentc2a796f171bf116ad7b1833f3850d058a0efadc6 (diff)
wctdm24xxp: Add back in 'static' for ACIM2TISS as well.
Acidentally removed... git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@7985 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/wctdm24xxp/base.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dahdi/wctdm24xxp/base.c b/drivers/dahdi/wctdm24xxp/base.c
index 8377422..3d91269 100644
--- a/drivers/dahdi/wctdm24xxp/base.c
+++ b/drivers/dahdi/wctdm24xxp/base.c
@@ -2478,9 +2478,9 @@ static int wctdm_init_proslic(struct wctdm *wc, int card, int fast, int manual,
wctdm_setreg(wc, card, 22, 0xff);
wctdm_setreg(wc, card, 73, 0x04);
if (fxshonormode) {
- const int ACIM2TISS[16] = { 0x0, 0x1, 0x4, 0x5, 0x7, 0x0,
- 0x0, 0x6, 0x0, 0x0, 0x0, 0x2,
- 0x0, 0x3 };
+ static const int ACIM2TISS[16] = { 0x0, 0x1, 0x4, 0x5, 0x7,
+ 0x0, 0x0, 0x6, 0x0, 0x0,
+ 0x0, 0x2, 0x0, 0x3 };
fxsmode = ACIM2TISS[fxo_modes[_opermode].acim];
wctdm_setreg(wc, card, 10, 0x08 | fxsmode);
if (fxo_modes[_opermode].ring_osc)