1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-31 12:13:10 +00:00

Add quirk to configure headphones redirection on Intel DH87RL boards.

MFC after:	3 days
This commit is contained in:
Marius Strobl 2014-04-23 19:25:59 +00:00
parent 48856c5130
commit d98052c4a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264831
2 changed files with 9 additions and 1 deletions

View File

@ -355,7 +355,7 @@ hdac_pin_patch(struct hdaa_widget *w)
case 25:
patch = "as=1 seq=15";
break;
/*
/*
* Group onboard mic and headphone mic
* together. Fixes onboard mic.
*/
@ -383,6 +383,13 @@ hdac_pin_patch(struct hdaa_widget *w)
patch = "as=1 seq=15";
break;
}
} else if (id == HDA_CODEC_ALC892 &&
subid == INTEL_DH87RL_SUBVENDOR) {
switch (nid) {
case 27:
patch = "as=1 seq=15";
break;
}
}
if (patch != NULL)

View File

@ -155,6 +155,7 @@
/* OEM/subvendors */
/* Intel */
#define INTEL_DH87RL_SUBVENDOR HDA_MODEL_CONSTRUCT(INTEL, 0x204a)
#define INTEL_D101GGC_SUBVENDOR HDA_MODEL_CONSTRUCT(INTEL, 0xd600)
/* HP/Compaq */