svn commit: r359781 - head/sys/dev/sound/pci/hda

Ed Maste emaste at FreeBSD.org
Fri Apr 10 21:27:50 UTC 2020


Author: emaste
Date: Fri Apr 10 21:27:49 2020
New Revision: 359781
URL: https://svnweb.freebsd.org/changeset/base/359781

Log:
  hda: if a CODEC is not responding, report which one
  
  PR:		229190
  MFC after:	1 week

Modified:
  head/sys/dev/sound/pci/hda/hdac.c

Modified: head/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdac.c	Fri Apr 10 21:25:35 2020	(r359780)
+++ head/sys/dev/sound/pci/hda/hdac.c	Fri Apr 10 21:27:49 2020	(r359781)
@@ -1529,7 +1529,7 @@ hdac_attach2(void *arg)
 			if (vendorid == HDA_INVALID &&
 			    revisionid == HDA_INVALID) {
 				device_printf(sc->dev,
-				    "CODEC is not responding!\n");
+				    "CODEC at address %d not responding!\n", i);
 				continue;
 			}
 			sc->codecs[i].vendor_id =


More information about the svn-src-head mailing list