diff options
author | mav <mav@FreeBSD.org> | 2012-11-23 13:43:51 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2012-11-23 13:43:51 +0000 |
commit | 775dfadf10aa25aee14b59516b6d2c2474653d48 (patch) | |
tree | 6174f5364e221e2bae7cc72fccfc290b6bdc8509 | |
parent | b4dab2192ab49d161e2d20b3c6f62a36a874c023 (diff) | |
download | FreeBSD-src-775dfadf10aa25aee14b59516b6d2c2474653d48.zip FreeBSD-src-775dfadf10aa25aee14b59516b6d2c2474653d48.tar.gz |
Move sndbuf_setmap() output about buffer addresses from the general verbose
output to sound verbose output, where all other sndbuf messages live.
-rw-r--r-- | sys/dev/sound/pcm/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/buffer.c b/sys/dev/sound/pcm/buffer.c index 0a10855..0ae2fb0 100644 --- a/sys/dev/sound/pcm/buffer.c +++ b/sys/dev/sound/pcm/buffer.c @@ -70,7 +70,7 @@ sndbuf_setmap(void *arg, bus_dma_segment_t *segs, int nseg, int error) { struct snd_dbuf *b = (struct snd_dbuf *)arg; - if (bootverbose) { + if (snd_verbose > 3) { device_printf(b->dev, "sndbuf_setmap %lx, %lx; ", (u_long)segs[0].ds_addr, (u_long)segs[0].ds_len); printf("%p -> %lx\n", b->buf, (u_long)segs[0].ds_addr); |