summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wcte11xp.c
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2009-06-29 20:56:07 +0000
committerShaun Ruffell <sruffell@digium.com>2009-06-29 20:56:07 +0000
commit0b13254ec47e0e72bcfd29c170f5752f87e957ce (patch)
tree00d903d8f17c3be33730d4e25b453306db83eca8 /drivers/dahdi/wcte11xp.c
parent9a504db54b889af1d6b3b59a96a16109c814c709 (diff)
dahdi-base: Enable DAHDI to manage the reference counts for the board drivers.
Adds a struct module 'owner' member to the dahdi_span structure and updates all the board drivers to set this member before registering the span. This allows the core of dahdi to maintain the reference counts on the channels itself. (closes issue #10601) Reported by: Matti git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@6794 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wcte11xp.c')
-rw-r--r--drivers/dahdi/wcte11xp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dahdi/wcte11xp.c b/drivers/dahdi/wcte11xp.c
index 26f47fa..dec6d65 100644
--- a/drivers/dahdi/wcte11xp.c
+++ b/drivers/dahdi/wcte11xp.c
@@ -230,7 +230,6 @@ static int t1xxp_open(struct dahdi_chan *chan)
if (wc->dead)
return -ENODEV;
wc->usecount++;
- try_module_get(THIS_MODULE);
return 0;
}
@@ -355,7 +354,6 @@ static int t1xxp_close(struct dahdi_chan *chan)
struct t1 *wc = chan->pvt;
wc->usecount--;
- module_put(THIS_MODULE);
/* If we're dead, release us now */
if (!wc->usecount && wc->dead)
t1xxp_release(wc);