Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120549
b: refs/heads/master
c: 7662453
h: refs/heads/master
i:
  120547: d5389ad
v: v3
  • Loading branch information
Takashi Iwai committed Dec 19, 2008
1 parent 0152400 commit 06d4700
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 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: c21ca4a872697aeda4fe91bf9b6cc8380c62827c
refs/heads/master: 766245348db4b047a9b53548b5b893cd5115decc
33 changes: 29 additions & 4 deletions trunk/sound/pci/hda/patch_sigmatel.c
Original file line number Diff line number Diff line change
Expand Up @@ -2949,17 +2949,30 @@ static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
return 1;
}

static int is_unique_dac(struct sigmatel_spec *spec, hda_nid_t nid)
{
int i;

if (spec->autocfg.line_outs != 1)
return 0;
if (spec->multiout.hp_nid == nid)
return 0;
for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++)
if (spec->multiout.extra_out_nid[i] == nid)
return 0;
return 1;
}

/* add playback controls from the parsed DAC table */
static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
const struct auto_pin_cfg *cfg)
{
struct sigmatel_spec *spec = codec->spec;
static const char *chname[4] = {
"Front", "Surround", NULL /*CLFE*/, "Side"
};
hda_nid_t nid = 0;
int i, err;

struct sigmatel_spec *spec = codec->spec;
int i, err, num_dacs;
unsigned int wid_caps, pincap;

for (i = 0; i < cfg->line_outs && spec->multiout.dac_nids[i]; i++) {
Expand All @@ -2985,7 +2998,19 @@ static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
}

} else {
err = create_controls(spec, chname[i], nid, 3);
const char *name = chname[i];
/* if it's a single DAC, assign a better name */
if (!i && is_unique_dac(spec, nid)) {
switch (cfg->line_out_type) {
case AUTO_PIN_HP_OUT:
name = "Headphone";
break;
case AUTO_PIN_SPEAKER_OUT:
name = "Speaker";
break;
}
}
err = create_controls(spec, name, nid, 3);
if (err < 0)
return err;
}
Expand Down

0 comments on commit 06d4700

Please sign in to comment.