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

Alexander Motin mav at FreeBSD.org
Thu Oct 30 10:54:20 PDT 2008


Author: mav
Date: Thu Oct 30 17:54:20 2008
New Revision: 184483
URL: http://svn.freebsd.org/changeset/base/184483

Log:
  Add quirk to set GPIO2 to enable internal speaker on Dell Vostro 1400.
  
  Tested by:	Sergio Veloso

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	Thu Oct 30 17:47:57 2008	(r184482)
+++ head/sys/dev/sound/pci/hda/hdac.c	Thu Oct 30 17:54:20 2008	(r184483)
@@ -83,7 +83,7 @@
 
 #include "mixer_if.h"
 
-#define HDA_DRV_TEST_REV	"20081024_0114"
+#define HDA_DRV_TEST_REV	"20081030_0115"
 
 SND_DECLARE_FILE("$FreeBSD$");
 
@@ -204,6 +204,7 @@ SND_DECLARE_FILE("$FreeBSD$");
 #define DELL_VENDORID		0x1028
 #define DELL_D630_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x01f9)
 #define DELL_D820_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x01cc)
+#define DELL_V1400_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x0227)
 #define DELL_V1500_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x0228)
 #define DELL_I1300_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x01c9)
 #define DELL_XPSM1210_SUBVENDOR	HDA_MODEL_CONSTRUCT(DELL, 0x01d7)
@@ -4427,6 +4428,8 @@ static const struct {
 	    HDA_QUIRK_GPIO0 | HDA_QUIRK_GPIO1, 0 },
 	{ DELL_D630_SUBVENDOR, HDA_CODEC_STAC9205X,
 	    HDA_QUIRK_GPIO0, 0 },
+	{ DELL_V1400_SUBVENDOR, HDA_CODEC_STAC9228X,
+	    HDA_QUIRK_GPIO2, 0 },
 	{ DELL_V1500_SUBVENDOR, HDA_CODEC_STAC9205X,
 	    HDA_QUIRK_GPIO0, 0 },
 	{ HDA_MATCH_ALL, HDA_CODEC_AD1988,


More information about the svn-src-all mailing list