summaryrefslogtreecommitdiff
path: root/wcte11xp.c
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-03-21 05:14:11 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-03-21 05:14:11 +0000
commit705873982964a2d7c06131f5eed67c7f4d156f7f (patch)
tree757fdb1928bb0d36a3186e93038a16b8775327ff /wcte11xp.c
parent9629b7e50e006f65c2c58dd847b6436017100005 (diff)
Add use counts to currently shipping stuff (bug #3773):
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@607 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wcte11xp.c')
-rwxr-xr-xwcte11xp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/wcte11xp.c b/wcte11xp.c
index 7a0e4da..ccc6d3e 100755
--- a/wcte11xp.c
+++ b/wcte11xp.c
@@ -226,6 +226,8 @@ static int t1xxp_open(struct zt_chan *chan)
wc->usecount++;
#ifndef LINUX26
MOD_INC_USE_COUNT;
+#else
+ try_module_get(THIS_MODULE);
#endif
return 0;
}
@@ -346,6 +348,8 @@ static int t1xxp_close(struct zt_chan *chan)
wc->usecount--;
#ifndef LINUX26
MOD_DEC_USE_COUNT;
+#else
+ module_put(THIS_MODULE);
#endif
/* If we're dead, release us now */
if (!wc->usecount && wc->dead)