ALSA: hda - Fix missing unsol event handler in some codec drivers

This resulted in non-working auto-mute behavior, of course...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai 2013-01-18 07:51:17 +01:00
parent 36c9db7a1a
commit 8a6c21aee8
3 changed files with 3 additions and 0 deletions

View File

@ -595,6 +595,7 @@ static const struct hda_codec_ops ad198x_auto_patch_ops = {
.build_pcms = snd_hda_gen_build_pcms, .build_pcms = snd_hda_gen_build_pcms,
.init = snd_hda_gen_init, .init = snd_hda_gen_init,
.free = ad198x_free, .free = ad198x_free,
.unsol_event = snd_hda_jack_unsol_event,
#ifdef CONFIG_PM #ifdef CONFIG_PM
.check_power_status = snd_hda_gen_check_power_status, .check_power_status = snd_hda_gen_check_power_status,
.suspend = ad198x_suspend, .suspend = ad198x_suspend,

View File

@ -36,6 +36,7 @@ static const struct hda_codec_ops ca0110_patch_ops = {
.build_pcms = snd_hda_gen_build_pcms, .build_pcms = snd_hda_gen_build_pcms,
.init = snd_hda_gen_init, .init = snd_hda_gen_init,
.free = snd_hda_gen_free, .free = snd_hda_gen_free,
.unsol_event = snd_hda_jack_unsol_event,
}; };
static int ca0110_parse_auto_config(struct hda_codec *codec) static int ca0110_parse_auto_config(struct hda_codec *codec)

View File

@ -576,6 +576,7 @@ static const struct hda_codec_ops cmi_auto_patch_ops = {
.build_pcms = snd_hda_gen_build_pcms, .build_pcms = snd_hda_gen_build_pcms,
.init = snd_hda_gen_init, .init = snd_hda_gen_init,
.free = snd_hda_gen_free, .free = snd_hda_gen_free,
.unsol_event = snd_hda_jack_unsol_event,
}; };
static int cmi_parse_auto_config(struct hda_codec *codec) static int cmi_parse_auto_config(struct hda_codec *codec)