Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257695
b: refs/heads/master
c: 6aadf41
h: refs/heads/master
i:
  257693: 853574a
  257691: ba35265
  257687: 61ba2f0
  257679: ac6f908
  257663: 3b9d91d
v: v3
  • Loading branch information
Takashi Iwai committed Jun 20, 2011
1 parent 6308d25 commit a6446da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 13af8e77ea3e0dff80db9b2e0007535c21d49094
refs/heads/master: 6aadf41d6b9f8da68db5962929c07f816db15893
6 changes: 5 additions & 1 deletion trunk/sound/pci/hda/patch_via.c
Original file line number Diff line number Diff line change
Expand Up @@ -1770,7 +1770,11 @@ static int via_auto_create_multi_out_ctls(struct hda_codec *codec)
if (err < 0)
return err;
} else {
err = create_ch_ctls(codec, chname[i], pin, dac, 3);
const char *pfx = chname[i];
if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
cfg->line_outs == 1)
pfx = "Speaker";
err = create_ch_ctls(codec, pfx, pin, dac, 3);
if (err < 0)
return err;
}
Expand Down

0 comments on commit a6446da

Please sign in to comment.