summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctc4xxp
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2008-10-03 15:39:21 +0000
committerShaun Ruffell <sruffell@digium.com>2008-10-03 15:39:21 +0000
commit61136b0f97129d5734ebd049beff1ecd01adb199 (patch)
treec219ebf338548450c91e4f437aa1f386d2cdcbac /drivers/dahdi/wctc4xxp
parentb9ed538281305b4dd93d890b77d70549efa6a4bd (diff)
There are two possible valid statues when booting the TC400M.
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@5034 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wctc4xxp')
-rw-r--r--drivers/dahdi/wctc4xxp/base.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/dahdi/wctc4xxp/base.c b/drivers/dahdi/wctc4xxp/base.c
index 905e0ab..8544c7c 100644
--- a/drivers/dahdi/wctc4xxp/base.c
+++ b/drivers/dahdi/wctc4xxp/base.c
@@ -1888,7 +1888,9 @@ receive_csm_encaps_packet(struct wcdte *wc, struct tcb *cmd)
DTE_PRINTK(WARNING,
"DTE Failed self test (%04x).\n",
le16_to_cpu(hdr->params[0]));
- } else if (hdr->params[1] != le16_to_cpu(0x000c)) {
+ } else if ((hdr->params[1] != le16_to_cpu(0x000c)) &&
+ (hdr->params[1] != le16_to_cpu(0x010c)))
+ {
DTE_PRINTK(WARNING,
"Unexpected ERAM status (%04x).\n",
le16_to_cpu(hdr->params[1]));