Commit b9c5106c authored by Takashi Iwai's avatar Takashi Iwai

ALSA: hda - Remove the rest of ALC662 quirks

The rest of ALC662 quirks are only for desktops, and they should work
with the auto-parser.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a9b36153
......@@ -67,10 +67,6 @@ ALC269
ALC662/663/272
==============
3stack-dig 3-stack (2-channel) with SPDIF
3stack-6ch 3-stack (6-channel)
3stack-6ch-dig 3-stack (6-channel) with SPDIF
5stack-dig 5-stack with SPDIF
asus-mode1 ASUS
asus-mode2 ASUS
asus-mode3 ASUS
......@@ -79,7 +75,6 @@ ALC662/663/272
asus-mode6 ASUS
asus-mode7 ASUS
asus-mode8 ASUS
auto auto-config reading BIOS (default)
ALC680
======
......
This diff is collapsed.
......@@ -5553,14 +5553,10 @@ static const struct alc_model_fixup alc662_fixup_models[] = {
/*
*/
#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
#include "alc662_quirks.c"
#endif
static int patch_alc662(struct hda_codec *codec)
{
struct alc_spec *spec;
int err, board_config;
int err;
int coef;
spec = kzalloc(sizeof(*spec), GFP_KERNEL);
......@@ -5588,15 +5584,6 @@ static int patch_alc662(struct hda_codec *codec)
else if (coef == 0x4011)
alc_codec_rename(codec, "ALC656");
board_config = alc_board_config(codec, ALC662_MODEL_LAST,
alc662_models, alc662_cfg_tbl);
if (board_config < 0) {
printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
codec->chip_name);
board_config = ALC_MODEL_AUTO;
}
if (board_config == ALC_MODEL_AUTO) {
alc_pick_fixup(codec, alc662_fixup_models,
alc662_fixup_tbl, alc662_fixups);
alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
......@@ -5606,18 +5593,6 @@ static int patch_alc662(struct hda_codec *codec)
alc_free(codec);
return err;
}
#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
else if (!err) {
printk(KERN_INFO
"hda_codec: Cannot set up configuration "
"from BIOS. Using base mode...\n");
board_config = ALC662_3ST_2ch_DIG;
}
#endif
}
if (board_config != ALC_MODEL_AUTO)
setup_preset(codec, &alc662_presets[board_config]);
if (!spec->no_analog && !spec->adc_nids) {
alc_auto_fill_adc_caps(codec);
......@@ -5653,7 +5628,6 @@ static int patch_alc662(struct hda_codec *codec)
alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
codec->patch_ops = alc_patch_ops;
if (board_config == ALC_MODEL_AUTO)
spec->init_hook = alc_auto_init_std;
spec->shutup = alc_eapd_shutup;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment