|
@@ -1605,6 +1605,11 @@ static void cxt5051_update_speaker(struct hda_codec *codec)
|
|
|
{
|
|
|
struct conexant_spec *spec = codec->spec;
|
|
|
unsigned int pinctl;
|
|
|
+ /* headphone pin */
|
|
|
+ pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0;
|
|
|
+ snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
|
|
|
+ pinctl);
|
|
|
+ /* speaker pin */
|
|
|
pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
|
|
|
snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
|
|
|
pinctl);
|