svn commit: r236749 - stable/8/sys/dev/sound/pci/hda

Alexander Motin mav at FreeBSD.org
Fri Jun 8 12:31:50 UTC 2012


Author: mav
Date: Fri Jun  8 12:31:49 2012
New Revision: 236749
URL: http://svn.freebsd.org/changeset/base/236749

Log:
  MFC r223118:
  Hide driver revision behind bootverbose.

Modified:
  stable/8/sys/dev/sound/pci/hda/hdac.c
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/8/sys/dev/sound/pci/hda/hdac.c	Fri Jun  8 12:24:47 2012	(r236748)
+++ stable/8/sys/dev/sound/pci/hda/hdac.c	Fri Jun  8 12:31:49 2012	(r236749)
@@ -4154,7 +4154,10 @@ hdac_attach(device_t dev)
 	uint16_t vendor;
 	uint8_t v;
 
-	device_printf(dev, "HDA Driver Revision: %s\n", HDA_DRV_TEST_REV);
+	HDA_BOOTVERBOSE(
+		device_printf(dev, "HDA Driver Revision: %s\n",
+		    HDA_DRV_TEST_REV);
+	);
 
 	model = (uint32_t)pci_get_device(dev) << 16;
 	model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff;


More information about the svn-src-all mailing list