summaryrefslogtreecommitdiff
path: root/wct4xxp.c
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2004-07-12 13:17:28 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2004-07-12 13:17:28 +0000
commitb6f5d94bb37d52f93b2b869c1105ded1fe520fe8 (patch)
tree7de36f13bb72501c7329de7eef8f8ffc226a1686 /wct4xxp.c
parent6ed63353c415782d93d2e8fb01b48afc8a3ec16c (diff)
Ignore write/read mismatch on WC_INTR since that's actually pretty reasonable if the interrupt handling is fast enough
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@432 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wct4xxp.c')
-rwxr-xr-xwct4xxp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wct4xxp.c b/wct4xxp.c
index d39822f..b1c309a 100755
--- a/wct4xxp.c
+++ b/wct4xxp.c
@@ -187,7 +187,7 @@ static inline void __t4_pci_out(struct t4 *wc, const unsigned int addr, const un
#if 1
tmp = wc->membase[addr];
if ((value != tmp) && (addr != WC_LEDS) && (addr != WC_LDATA) &&
- (addr != WC_GPIO))
+ (addr != WC_GPIO) && (addr != WC_INTR))
printk("Tried to load %08x into %08x, but got %08x instead\n", value, addr, tmp);
#endif
}