Skip to content

Commit

Permalink
ALSA: hda - Add alc_init_jacks() call to other codecs
Browse files Browse the repository at this point in the history
Signed-off-by: Kailang Yang <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
KailangYang authored and tiwai committed Oct 21, 2010
1 parent 1cc9e8f commit bf1b022
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion sound/pci/hda/patch_realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -11006,6 +11006,8 @@ static int patch_alc882(struct hda_codec *codec)
codec->patch_ops = alc_patch_ops;
if (board_config == ALC882_AUTO)
spec->init_hook = alc882_auto_init;

alc_init_jacks(codec);
#ifdef CONFIG_SND_HDA_POWER_SAVE
if (!spec->loopback.amplist)
spec->loopback.amplist = alc882_loopbacks;
Expand Down Expand Up @@ -12914,6 +12916,8 @@ static int patch_alc262(struct hda_codec *codec)
codec->patch_ops = alc_patch_ops;
if (board_config == ALC262_AUTO)
spec->init_hook = alc262_auto_init;

alc_init_jacks(codec);
#ifdef CONFIG_SND_HDA_POWER_SAVE
if (!spec->loopback.amplist)
spec->loopback.amplist = alc262_loopbacks;
Expand Down Expand Up @@ -13993,6 +13997,8 @@ static int patch_alc268(struct hda_codec *codec)
if (board_config == ALC268_AUTO)
spec->init_hook = alc268_auto_init;

alc_init_jacks(codec);

return 0;
}

Expand Down Expand Up @@ -14359,6 +14365,7 @@ static void alc269_speaker_automute(struct hda_codec *codec)
HDA_AMP_MUTE, bits);
snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
HDA_AMP_MUTE, bits);
alc_report_jack(codec, nid);
}

/* unsolicited event for HP jack sensing */
Expand Down Expand Up @@ -14695,7 +14702,6 @@ static void alc269_auto_init(struct hda_codec *codec)
alc269_auto_init_hp_out(codec);
alc269_auto_init_analog_input(codec);
alc_auto_init_digital(codec);
alc_init_jacks(codec);
if (spec->unsol_event)
alc_inithook(codec);
}
Expand Down Expand Up @@ -15128,6 +15134,8 @@ static int patch_alc269(struct hda_codec *codec)
#endif
if (board_config == ALC269_AUTO)
spec->init_hook = alc269_auto_init;

alc_init_jacks(codec);
#ifdef CONFIG_SND_HDA_POWER_SAVE
if (!spec->loopback.amplist)
spec->loopback.amplist = alc269_loopbacks;
Expand Down Expand Up @@ -19393,6 +19401,8 @@ static int patch_alc662(struct hda_codec *codec)
alc_pick_fixup(codec, alc662_fixup_tbl, alc662_fixups, 0);
}

alc_init_jacks(codec);

#ifdef CONFIG_SND_HDA_POWER_SAVE
if (!spec->loopback.amplist)
spec->loopback.amplist = alc662_loopbacks;
Expand Down

0 comments on commit bf1b022

Please sign in to comment.