svn commit: r243459 - head/sys/dev/sound/pcm

Alexander Motin mav at FreeBSD.org
Fri Nov 23 15:31:00 UTC 2012


Author: mav
Date: Fri Nov 23 15:31:00 2012
New Revision: 243459
URL: http://svnweb.freebsd.org/changeset/base/243459

Log:
  Remove "clone manager: " message from verbose dmesg. It is pointless to
  print values that are statically hardcoded few lines above that.

Modified:
  head/sys/dev/sound/pcm/sound.c

Modified: head/sys/dev/sound/pcm/sound.c
==============================================================================
--- head/sys/dev/sound/pcm/sound.c	Fri Nov 23 14:53:28 2012	(r243458)
+++ head/sys/dev/sound/pcm/sound.c	Fri Nov 23 15:31:00 2012	(r243459)
@@ -1074,13 +1074,6 @@ pcm_register(device_t dev, void *devinfo
 	    SND_CLONE_GC_ENABLE | SND_CLONE_GC_UNREF |
 	    SND_CLONE_GC_LASTREF | SND_CLONE_GC_EXPIRED);
 
-	if (bootverbose != 0 || snd_verbose > 3) {
-		device_printf(dev,
-		    "clone manager: deadline=%dms flags=0x%08x\n",
-		    snd_clone_getdeadline(d->clones),
-		    snd_clone_getflags(d->clones));
-	}
-
 	CHN_INIT(d, channels.pcm);
 	CHN_INIT(d, channels.pcm.busy);
 	CHN_INIT(d, channels.pcm.opened);


More information about the svn-src-all mailing list