Commit c82693db authored by Takashi Iwai's avatar Takashi Iwai

ALSA: hda - Enable auto-parser as default for Conexant codecs

Let's use auto-parser as default now.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent c2549312
...@@ -1124,10 +1124,8 @@ static int patch_cxt5045(struct hda_codec *codec) ...@@ -1124,10 +1124,8 @@ static int patch_cxt5045(struct hda_codec *codec)
board_config = snd_hda_check_board_config(codec, CXT5045_MODELS, board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
cxt5045_models, cxt5045_models,
cxt5045_cfg_tbl); cxt5045_cfg_tbl);
#if 0 /* use the old method just for safety */
if (board_config < 0) if (board_config < 0)
board_config = CXT5045_AUTO; board_config = CXT5045_AUTO; /* model=auto as default */
#endif
if (board_config == CXT5045_AUTO) if (board_config == CXT5045_AUTO)
return patch_conexant_auto(codec); return patch_conexant_auto(codec);
...@@ -1565,10 +1563,8 @@ static int patch_cxt5047(struct hda_codec *codec) ...@@ -1565,10 +1563,8 @@ static int patch_cxt5047(struct hda_codec *codec)
board_config = snd_hda_check_board_config(codec, CXT5047_MODELS, board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
cxt5047_models, cxt5047_models,
cxt5047_cfg_tbl); cxt5047_cfg_tbl);
#if 0 /* not enabled as default, as BIOS often broken for this codec */
if (board_config < 0) if (board_config < 0)
board_config = CXT5047_AUTO; board_config = CXT5047_AUTO; /* model=auto as default */
#endif
if (board_config == CXT5047_AUTO) if (board_config == CXT5047_AUTO)
return patch_conexant_auto(codec); return patch_conexant_auto(codec);
...@@ -1994,10 +1990,8 @@ static int patch_cxt5051(struct hda_codec *codec) ...@@ -1994,10 +1990,8 @@ static int patch_cxt5051(struct hda_codec *codec)
board_config = snd_hda_check_board_config(codec, CXT5051_MODELS, board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
cxt5051_models, cxt5051_models,
cxt5051_cfg_tbl); cxt5051_cfg_tbl);
#if 0 /* use the old method just for safety */
if (board_config < 0) if (board_config < 0)
board_config = CXT5051_AUTO; board_config = CXT5051_AUTO; /* model=auto as default */
#endif
if (board_config == CXT5051_AUTO) if (board_config == CXT5051_AUTO)
return patch_conexant_auto(codec); return patch_conexant_auto(codec);
...@@ -3115,10 +3109,8 @@ static int patch_cxt5066(struct hda_codec *codec) ...@@ -3115,10 +3109,8 @@ static int patch_cxt5066(struct hda_codec *codec)
board_config = snd_hda_check_board_config(codec, CXT5066_MODELS, board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
cxt5066_models, cxt5066_cfg_tbl); cxt5066_models, cxt5066_cfg_tbl);
#if 0 /* use the old method just for safety */
if (board_config < 0) if (board_config < 0)
board_config = CXT5066_AUTO; board_config = CXT5066_AUTO; /* model=auto as default */
#endif
if (board_config == CXT5066_AUTO) if (board_config == CXT5066_AUTO)
return patch_conexant_auto(codec); return patch_conexant_auto(codec);
......
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