Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Jan 2009 08:24:09 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r187944 - head/sys/dev/sound/pci/hda
Message-ID:  <200901310824.n0V8O9qS016202@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901310824.n0V8O9qS016202>