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

Alexander Motin mav at FreeBSD.org
Mon Mar 4 21:20:14 UTC 2013


Author: mav
Date: Mon Mar  4 21:20:13 2013
New Revision: 247815
URL: http://svnweb.freebsd.org/changeset/base/247815

Log:
  Add quirk to enable headphones redirection on Lenovo X220.
  
  PR:		kern/174876
  MFC after:	1 week

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

Modified: head/sys/dev/sound/pci/hda/hdaa_patches.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdaa_patches.c	Mon Mar  4 21:18:45 2013	(r247814)
+++ head/sys/dev/sound/pci/hda/hdaa_patches.c	Mon Mar  4 21:20:13 2013	(r247815)
@@ -333,6 +333,13 @@ hdac_pin_patch(struct hdaa_widget *w)
 			patch = "as=1 seq=15";
 			break;
 		}
+	} else if (id == HDA_CODEC_CX20590 &&
+	    subid == LENOVO_X220_SUBVENDOR) {
+		switch (nid) {
+		case 25:
+			patch = "as=1 seq=15";
+			break;
+		}
 	}
 
 	if (patch != NULL)

Modified: head/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- head/sys/dev/sound/pci/hda/hdac.h	Mon Mar  4 21:18:45 2013	(r247814)
+++ head/sys/dev/sound/pci/hda/hdac.h	Mon Mar  4 21:20:13 2013	(r247815)
@@ -220,6 +220,7 @@
 #define LENOVO_3KN200_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x384e)
 #define LENOVO_B450_SUBVENDOR HDA_MODEL_CONSTRUCT(LENOVO, 0x3a0d)
 #define LENOVO_TCA55_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x1015)
+#define LENOVO_X220_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x21da)
 #define LENOVO_X300_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0x20ac)
 #define LENOVO_ALL_SUBVENDOR	HDA_MODEL_CONSTRUCT(LENOVO, 0xffff)
 


More information about the svn-src-all mailing list