diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-08-07 20:52:37 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-08-07 20:52:37 +0000 |
commit | 64ca7c6d4737dfda3c57b25f3804fbd227199168 (patch) | |
tree | 20eab79af23baeaaed64117ab7e0dcf4516c5b40 /sys/dev/pci/azalia.c | |
parent | 34c9ebb330d62ad8915a3045e16e172880972cdd (diff) |
quiet "missed interrupt" messages. requested by deraadt.
Diffstat (limited to 'sys/dev/pci/azalia.c')
-rw-r--r-- | sys/dev/pci/azalia.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/azalia.c b/sys/dev/pci/azalia.c index 78411311407..b62315c4e70 100644 --- a/sys/dev/pci/azalia.c +++ b/sys/dev/pci/azalia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: azalia.c,v 1.180 2010/08/07 20:48:55 jakemsr Exp $ */ +/* $OpenBSD: azalia.c,v 1.181 2010/08/07 20:52:36 jakemsr Exp $ */ /* $NetBSD: azalia.c,v 1.20 2006/05/07 08:31:44 kent Exp $ */ /*- @@ -3852,13 +3852,13 @@ azalia_stream_intr(stream_t *this) swpos = this->swpos + this->blk; if (hwpos >= swpos + this->blk) { - printf("stream %d: swpos %lu hwpos %lu, adding intr\n", - this->number, swpos, hwpos); + DPRINTF(("%s: stream %d: swpos %lu hwpos %lu, adding intr\n", + __func__, this->number, swpos, hwpos)); this->intr(this->intr_arg); this->swpos += this->blk; } else if (swpos >= hwpos + this->blk) { - printf("stream %d: swpos %lu hwpos %lu, ignoring intr\n", - this->number, swpos, hwpos); + DPRINTF(("%s: stream %d: swpos %lu hwpos %lu, ignoring intr\n", + __func__, this->number, swpos, hwpos)); return (1); } this->intr(this->intr_arg); |