diff options
Diffstat (limited to 'sound/pci/hda/patch_sigmatel.c')
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 66c0876bf734..426edfa476a2 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -3221,7 +3221,7 @@ static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, | |||
3221 | /* check for mute support for the the amp */ | 3221 | /* check for mute support for the the amp */ |
3222 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { | 3222 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { |
3223 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, | 3223 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, |
3224 | "PC Beep Playback Switch", | 3224 | "Beep Playback Switch", |
3225 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); | 3225 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
3226 | if (err < 0) | 3226 | if (err < 0) |
3227 | return err; | 3227 | return err; |
@@ -3230,7 +3230,7 @@ static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, | |||
3230 | /* check to see if there is volume support for the amp */ | 3230 | /* check to see if there is volume support for the amp */ |
3231 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { | 3231 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
3232 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, | 3232 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, |
3233 | "PC Beep Playback Volume", | 3233 | "Beep Playback Volume", |
3234 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); | 3234 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
3235 | if (err < 0) | 3235 | if (err < 0) |
3236 | return err; | 3236 | return err; |
@@ -3271,7 +3271,7 @@ static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { | |||
3271 | static int stac92xx_beep_switch_ctl(struct hda_codec *codec) | 3271 | static int stac92xx_beep_switch_ctl(struct hda_codec *codec) |
3272 | { | 3272 | { |
3273 | return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, | 3273 | return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, |
3274 | 0, "PC Beep Playback Switch", 0); | 3274 | 0, "Beep Playback Switch", 0); |
3275 | } | 3275 | } |
3276 | #endif | 3276 | #endif |
3277 | 3277 | ||