diff options
author | Alexander Motin <mav@FreeBSD.org> | 2012-11-23 13:43:51 +0000 |
---|---|---|
committer | Alexander Motin <mav@FreeBSD.org> | 2012-11-23 13:43:51 +0000 |
commit | 4754395cac56033b723c5e795c3c9c6c77a841c4 (patch) | |
tree | 6174f5364e221e2bae7cc72fccfc290b6bdc8509 /sys/dev/sound/pcm/buffer.c | |
parent | b91dc775066a15a520f51919bf31f121c044c365 (diff) |
Move sndbuf_setmap() output about buffer addresses from the general verbose
output to sound verbose output, where all other sndbuf messages live.
Notes
Notes:
svn path=/head/; revision=243450
Diffstat (limited to 'sys/dev/sound/pcm/buffer.c')
-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 0a10855a28d4..0ae2fb054f18 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); |