summaryrefslogtreecommitdiff
path: root/wcfxo.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-24 13:16:33 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-24 13:16:33 +0000
commit348a0007c3dad4785ecbbf0bafc53c4445e2e253 (patch)
treee1bc45349c085ceced5fddd37b7de630bfacb384 /wcfxo.c
parent0ca88aadd95a0be9cba986c417b4291f0bec9f37 (diff)
Merged revisions 1954 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ................ r1954 | kpfleming | 2007-01-24 07:11:19 -0600 (Wed, 24 Jan 2007) | 10 lines Merged revisions 1953 via svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1953 | kpfleming | 2007-01-24 07:01:36 -0600 (Wed, 24 Jan 2007) | 2 lines might as well fix this driver too :-) ........ ................ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1955 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wcfxo.c')
-rw-r--r--wcfxo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wcfxo.c b/wcfxo.c
index bfcef76..cc4a540 100644
--- a/wcfxo.c
+++ b/wcfxo.c
@@ -407,7 +407,6 @@ ZAP_IRQ_HANDLER(wcfxo_interrupt)
#endif
ints = inb(wc->ioaddr + WC_INTSTAT);
- outb(ints, wc->ioaddr + WC_INTSTAT);
if (!ints)
@@ -417,6 +416,8 @@ ZAP_IRQ_HANDLER(wcfxo_interrupt)
return;
#endif
+ outb(ints, wc->ioaddr + WC_INTSTAT);
+
if (ints & 0x0c) { /* if there is a rx interrupt pending */
#ifdef ENABLE_TASKLETS
wc->ints = ints;