diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-12-07 17:14:20 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-07 17:32:24 +0100 |
commit | fbabc24619f7298626265a3f973786b471b8c29d (patch) | |
tree | 5009a0762998a71d8ba5ce78a29c5c86bd65502f /sound | |
parent | 766ddee68bf1e4cc2cdcf73b34d243cf6e6f8ab0 (diff) | |
download | linux-3.10-fbabc24619f7298626265a3f973786b471b8c29d.tar.gz linux-3.10-fbabc24619f7298626265a3f973786b471b8c29d.tar.bz2 linux-3.10-fbabc24619f7298626265a3f973786b471b8c29d.zip |
ALSA: hda/realtek - Create "Bass Speaker" for two speaker pins
On systems with two speaker pins, the secondary speaker pin is mostly
assigned to a bass speaker instead of a surround. Thus it makes more
sense to rename the control properly.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 96f5da9db5c..214d4f91d6a 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -2631,6 +2631,8 @@ static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch, case AUTO_PIN_SPEAKER_OUT: if (cfg->line_outs == 1) return "Speaker"; + if (cfg->line_outs == 2) + return ch ? "Bass Speaker" : "Speaker"; break; case AUTO_PIN_HP_OUT: /* for multi-io case, only the primary out */ |