summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2008-10-20 17:24:25 +0000
committermav <mav@FreeBSD.org>2008-10-20 17:24:25 +0000
commit0cf0f083d0077e6dffc74d8105bbc6812785e68c (patch)
tree8066aca96bc58d344ca9d26c211c78f423b2978f /sys/dev/sound
parenta7d94abf211d6e808b21a807018d475ba18c41fe (diff)
downloadFreeBSD-src-0cf0f083d0077e6dffc74d8105bbc6812785e68c.zip
FreeBSD-src-0cf0f083d0077e6dffc74d8105bbc6812785e68c.tar.gz
Tune boot messages a bit.
Use <> brackets only at device name line.
Diffstat (limited to 'sys/dev/sound')
-rw-r--r--sys/dev/sound/pci/hda/hdac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c
index a8c6567..5287ed5 100644
--- a/sys/dev/sound/pci/hda/hdac.c
+++ b/sys/dev/sound/pci/hda/hdac.c
@@ -1854,7 +1854,7 @@ hdac_probe_codec(struct hdac_codec *codec)
nid_t cad = codec->cad;
HDA_BOOTVERBOSE(
- device_printf(sc->dev, "Probing codec %d...\n", cad);
+ device_printf(sc->dev, "Probing codec #%d...\n", cad);
);
vendorid = hdac_command(sc,
HDA_CMD_GET_PARAMETER(cad, 0x0, HDA_PARAM_VENDOR_ID),
@@ -1873,10 +1873,10 @@ hdac_probe_codec(struct hdac_codec *codec)
return;
}
- device_printf(sc->dev, "<HDA Codec #%d: %s>\n",
+ device_printf(sc->dev, "HDA Codec #%d: %s\n",
cad, hdac_codec_name(codec));
HDA_BOOTVERBOSE(
- device_printf(sc->dev, "<HDA Codec ID: 0x%08x>\n",
+ device_printf(sc->dev, " HDA Codec ID: 0x%08x\n",
hdac_codec_id(codec));
device_printf(sc->dev, " Vendor: 0x%04x\n",
codec->vendor_id);
@@ -3826,7 +3826,7 @@ hdac_attach(device_t dev)
uint16_t vendor;
uint8_t v;
- device_printf(dev, "<HDA Driver Revision: %s>\n", HDA_DRV_TEST_REV);
+ device_printf(dev, "HDA Driver Revision: %s\n", HDA_DRV_TEST_REV);
sc = device_get_softc(dev);
sc->lock = snd_mtxcreate(device_get_nameunit(dev), HDAC_MTX_NAME);
OpenPOWER on IntegriCloud