svn commit: r187944 - head/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Sat Jan 31 00:24:10 PST 2009
Author: mav
Date: Sat Jan 31 08:24:09 2009
New Revision: 187944
URL: http://svn.freebsd.org/changeset/base/187944
Log:
Fix bug in hint.hdac.X.config parsing.
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 Sat Jan 31 07:03:36 2009 (r187943)
+++ head/sys/dev/sound/pci/hda/hdac.c Sat Jan 31 08:24:09 2009 (r187944)
@@ -83,7 +83,7 @@
#include "mixer_if.h"
-#define HDA_DRV_TEST_REV "20090126_0126"
+#define HDA_DRV_TEST_REV "20090131_0127"
SND_DECLARE_FILE("$FreeBSD$");
@@ -7106,7 +7106,7 @@ hdac_config_fetch(struct hdac_softc *sc,
hdac_quirks_tab[k].key, len - inv) != 0)
continue;
if (len - inv != strlen(hdac_quirks_tab[k].key))
- break;
+ continue;
HDA_BOOTVERBOSE(
printf(" %s%s", (inv != 0) ? "no" : "",
hdac_quirks_tab[k].key);
More information about the svn-src-head
mailing list