summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wcte12xp
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2010-09-10 15:54:35 +0000
committerKinsey Moore <kmoore@digium.com>2010-09-10 15:54:35 +0000
commit4f8c2ddf3c9fd9353d01b9e7968b58511c7254b0 (patch)
tree17db6d5306c9fbad10702f5a9854dbf2049a7a67 /drivers/dahdi/wcte12xp
parentbb152ec06754d59e57a4581e9044716d292f2e28 (diff)
wcte11xp, wcte12xp: Fix a long-standing issue with shutdown
Upon shutdown, both drivers would attempt to power down external interfaces, but never attempted to bring them back up when the span was restarted. Removing that code allows the driver to work properly until a better solution can be found. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9316 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wcte12xp')
-rw-r--r--drivers/dahdi/wcte12xp/base.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dahdi/wcte12xp/base.c b/drivers/dahdi/wcte12xp/base.c
index f67c3b6..fd60c9a 100644
--- a/drivers/dahdi/wcte12xp/base.c
+++ b/drivers/dahdi/wcte12xp/base.c
@@ -984,7 +984,6 @@ static int t1xxp_startup(struct dahdi_span *span)
static int t1xxp_shutdown(struct dahdi_span *span)
{
struct t1 *wc = container_of(span, struct t1, span);
- t1_setreg(wc, 0x46, 0x41); /* GCR: Interrupt on Activation/Deactivation of AIX, LOS */
clear_bit(DAHDI_FLAGBIT_RUNNING, &span->flags);
return 0;
}