Skip to content
Snippets Groups Projects
Commit 1d955ebd authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Add missing initializations for ALC268 and ALC269

During the changes to clean up / fix the realtek codec initialization
routines in commit 4a79ba34,
I forgot to add the check for ALC268 and ALC269.
This resulted in the missing EAPD and COEF setup for these codecs.

This patch adds the missing checks for these codecs.

Reference: bko#13633
	http://bugzilla.kernel.org/show_bug.cgi?id=13633



Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 684a8842
No related branches found
No related tags found
No related merge requests found
...@@ -12463,6 +12463,8 @@ static int alc268_parse_auto_config(struct hda_codec *codec) ...@@ -12463,6 +12463,8 @@ static int alc268_parse_auto_config(struct hda_codec *codec)
if (err < 0) if (err < 0)
return err; return err;
   
alc_ssid_check(codec, 0x15, 0x1b, 0x14);
return 1; return 1;
} }
   
...@@ -13371,6 +13373,8 @@ static int alc269_parse_auto_config(struct hda_codec *codec) ...@@ -13371,6 +13373,8 @@ static int alc269_parse_auto_config(struct hda_codec *codec)
if (!spec->cap_mixer && !spec->no_analog) if (!spec->cap_mixer && !spec->no_analog)
set_capture_mixer(spec); set_capture_mixer(spec);
   
alc_ssid_check(codec, 0x15, 0x1b, 0x14);
return 1; return 1;
} }
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment