diff options
Diffstat (limited to 'sound/pci/hda/patch_ca0110.c')
-rw-r--r-- | sound/pci/hda/patch_ca0110.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/hda/patch_ca0110.c b/sound/pci/hda/patch_ca0110.c index 9398d92f18bd..392d108c3558 100644 --- a/sound/pci/hda/patch_ca0110.c +++ b/sound/pci/hda/patch_ca0110.c | |||
@@ -408,8 +408,7 @@ static void parse_line_outs(struct hda_codec *codec) | |||
408 | n = 0; | 408 | n = 0; |
409 | for (i = 0; i < cfg->line_outs; i++) { | 409 | for (i = 0; i < cfg->line_outs; i++) { |
410 | nid = cfg->line_out_pins[i]; | 410 | nid = cfg->line_out_pins[i]; |
411 | def_conf = snd_hda_codec_read(codec, nid, 0, | 411 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
412 | AC_VERB_GET_CONFIG_DEFAULT, 0); | ||
413 | if (!def_conf) | 412 | if (!def_conf) |
414 | continue; /* invalid pin */ | 413 | continue; /* invalid pin */ |
415 | if (snd_hda_get_connections(codec, nid, &spec->dacs[i], 1) != 1) | 414 | if (snd_hda_get_connections(codec, nid, &spec->dacs[i], 1) != 1) |
@@ -432,8 +431,7 @@ static void parse_hp_out(struct hda_codec *codec) | |||
432 | if (!cfg->hp_outs) | 431 | if (!cfg->hp_outs) |
433 | return; | 432 | return; |
434 | nid = cfg->hp_pins[0]; | 433 | nid = cfg->hp_pins[0]; |
435 | def_conf = snd_hda_codec_read(codec, nid, 0, | 434 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
436 | AC_VERB_GET_CONFIG_DEFAULT, 0); | ||
437 | if (!def_conf) { | 435 | if (!def_conf) { |
438 | cfg->hp_outs = 0; | 436 | cfg->hp_outs = 0; |
439 | return; | 437 | return; |