aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_sigmatel.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-07-30 03:24:29 -0400
committerTakashi Iwai <tiwai@suse.de>2009-07-30 03:24:29 -0400
commitbf677bd8fbd5dc06ead5511cf9fa76d090856c6a (patch)
tree5b458a28921b6f4ec620f02a7afb1765136a6d3b /sound/pci/hda/patch_sigmatel.c
parent6732bd0d15893d20359396309adc238e0af10b58 (diff)
ALSA: hda - Fix typos of Capture controls.
The commit 6479c63188290beae83ade3243b9d6eb47d394b6 ALSA: hda - Create Capture controls dynamically introduced typos of "Capture". Fixed now. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_sigmatel.c')
-rw-r--r--sound/pci/hda/patch_sigmatel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 883e2aa1007..9e192529e80 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -3307,11 +3307,11 @@ static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3307{ 3307{
3308 int err; 3308 int err;
3309 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx, 3309 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
3310 "Captuer Volume", vol); 3310 "Capture Volume", vol);
3311 if (err < 0) 3311 if (err < 0)
3312 return err; 3312 return err;
3313 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx, 3313 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
3314 "Captuer Switch", sw); 3314 "Capture Switch", sw);
3315 if (err < 0) 3315 if (err < 0)
3316 return err; 3316 return err;
3317 return 0; 3317 return 0;