Hide driver revision behind bootverbose.

Approved by:	mav
This commit is contained in:
Joel Dahl 2011-06-15 19:53:08 +00:00
parent 00a3d0dae2
commit d2c60314e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=223118

View File

@ -4146,7 +4146,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;