diff options
author | phk <phk@FreeBSD.org> | 2006-03-11 15:39:22 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2006-03-11 15:39:22 +0000 |
commit | 4bed556ee9ffb28b14c3b7da0161c729496fc4ce (patch) | |
tree | 2b279d7e044fae479c481f0fd1f260ac8d62884f /sys/dev/ieee488 | |
parent | aeed4af186bc0963f591923b7f09dcd79dfd5399 (diff) | |
download | FreeBSD-src-4bed556ee9ffb28b14c3b7da0161c729496fc4ce.zip FreeBSD-src-4bed556ee9ffb28b14c3b7da0161c729496fc4ce.tar.gz |
Don't be noisy in case of shared interrupts.
Diffstat (limited to 'sys/dev/ieee488')
-rw-r--r-- | sys/dev/ieee488/upd7210.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ieee488/upd7210.c b/sys/dev/ieee488/upd7210.c index 30f9762..c014f9f 100644 --- a/sys/dev/ieee488/upd7210.c +++ b/sys/dev/ieee488/upd7210.c @@ -97,6 +97,7 @@ upd7210intr(void *arg) isr1 = upd7210_rd(u, ISR1); isr2 = upd7210_rd(u, ISR2); if (u->busy == 0 || u->irq == NULL || !u->irq(u, 1)) { +#if 0 printf("upd7210intr [%02x %02x %02x", upd7210_rd(u, DIR), isr1, isr2); printf(" %02x %02x %02x %02x %02x] ", @@ -107,6 +108,7 @@ upd7210intr(void *arg) upd7210_rd(u, ADR1)); upd7210_print_isr(isr1, isr2); printf("\n"); +#endif } mtx_unlock(&u->mutex); } |