Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 353092
b: refs/heads/master
c: d415693
h: refs/heads/master
v: v3
  • Loading branch information
Takashi Iwai committed Jan 12, 2013
1 parent d68f0b7 commit 04a7b1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 29 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ee79c69ac726269591e2855d5a8d2be02920678d
refs/heads/master: d4156930b21e9317a560c9e1fc1d544935a9f6f3
41 changes: 13 additions & 28 deletions trunk/sound/pci/hda/hda_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -3753,16 +3753,18 @@ EXPORT_SYMBOL_HDA(snd_hda_gen_build_pcms);
* Standard auto-parser initializations
*/

/* configure the path from the given dac to the pin as the proper output */
static void set_output_and_unmute(struct hda_codec *codec, hda_nid_t pin,
/* configure the given path as a proper output */
static void set_output_and_unmute(struct hda_codec *codec,
int pin_type, int path_idx)
{
struct nid_path *path;
hda_nid_t pin;

snd_hda_set_pin_ctl_cache(codec, pin, pin_type);
path = snd_hda_get_path_from_idx(codec, path_idx);
if (!path)
if (!path || !path->depth)
return;
pin = path->path[path->depth - 1];
snd_hda_set_pin_ctl_cache(codec, pin, pin_type);
snd_hda_activate_path(codec, path, path->active, true);
set_pin_eapd(codec, pin, path->active);
}
Expand All @@ -3771,7 +3773,6 @@ static void set_output_and_unmute(struct hda_codec *codec, hda_nid_t pin,
static void init_multi_out(struct hda_codec *codec)
{
struct hda_gen_spec *spec = codec->spec;
hda_nid_t nid;
int pin_type;
int i;

Expand All @@ -3780,27 +3781,18 @@ static void init_multi_out(struct hda_codec *codec)
else
pin_type = PIN_OUT;

for (i = 0; i < spec->autocfg.line_outs; i++) {
nid = spec->autocfg.line_out_pins[i];
if (nid)
set_output_and_unmute(codec, nid, pin_type,
spec->out_paths[i]);
}
for (i = 0; i < spec->autocfg.line_outs; i++)
set_output_and_unmute(codec, pin_type, spec->out_paths[i]);
}


static void __init_extra_out(struct hda_codec *codec, int num_outs,
hda_nid_t *pins, int *paths, int type)
int *paths, int type)
{
int i;
hda_nid_t pin;

for (i = 0; i < num_outs; i++) {
pin = pins[i];
if (!pin)
break;
set_output_and_unmute(codec, pin, type, paths[i]);
}
for (i = 0; i < num_outs; i++)
set_output_and_unmute(codec, type, paths[i]);
}

/* initialize hp and speaker paths */
Expand All @@ -3810,11 +3802,9 @@ static void init_extra_out(struct hda_codec *codec)

if (spec->autocfg.line_out_type != AUTO_PIN_HP_OUT)
__init_extra_out(codec, spec->autocfg.hp_outs,
spec->autocfg.hp_pins,
spec->hp_paths, PIN_HP);
if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT)
__init_extra_out(codec, spec->autocfg.speaker_outs,
spec->autocfg.speaker_pins,
spec->speaker_paths, PIN_OUT);
}

Expand Down Expand Up @@ -3911,13 +3901,8 @@ static void init_digital(struct hda_codec *codec)
int i;
hda_nid_t pin;

for (i = 0; i < spec->autocfg.dig_outs; i++) {
pin = spec->autocfg.dig_out_pins[i];
if (!pin)
continue;
set_output_and_unmute(codec, pin, PIN_OUT,
spec->digout_paths[i]);
}
for (i = 0; i < spec->autocfg.dig_outs; i++)
set_output_and_unmute(codec, PIN_OUT, spec->digout_paths[i]);
pin = spec->autocfg.dig_in_pin;
if (pin) {
struct nid_path *path;
Expand Down

0 comments on commit 04a7b1d

Please sign in to comment.