提交 da70a3e9 编写于 作者: L Lars-Peter Clausen 提交者: Mark Brown

ASoC: neo1973_gta02_wm8753: Remove lm4853_{set,get}_state

This patch drops the lm4853_{set,get}_state functions and the "Amp State Switch"
control.
Those were noops which existed to maintain alsa state file compatibility. Since
the control names have changed due to internal changes in the ASoC core and
state file compatibility was broken anyway it makes sense to drop them.
Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
Acked-by: NLiam Girdwood <lrg@ti.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 9b0a25f0
...@@ -194,47 +194,14 @@ static struct snd_soc_ops neo1973_gta02_voice_ops = { ...@@ -194,47 +194,14 @@ static struct snd_soc_ops neo1973_gta02_voice_ops = {
.hw_free = neo1973_gta02_voice_hw_free, .hw_free = neo1973_gta02_voice_hw_free,
}; };
#define LM4853_AMP 1 static int gta02_speaker_enabled;
#define LM4853_SPK 2
static u8 lm4853_state;
/* This has no effect, it exists only to maintain compatibility with
* existing ALSA state files.
*/
static int lm4853_set_state(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
int val = ucontrol->value.integer.value[0];
if (val)
lm4853_state |= LM4853_AMP;
else
lm4853_state &= ~LM4853_AMP;
return 0;
}
static int lm4853_get_state(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
ucontrol->value.integer.value[0] = lm4853_state & LM4853_AMP;
return 0;
}
static int lm4853_set_spk(struct snd_kcontrol *kcontrol, static int lm4853_set_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
int val = ucontrol->value.integer.value[0]; gta02_speaker_enabled = ucontrol->value.integer.value[0];
if (val) { gpio_set_value(GTA02_GPIO_HP_IN, !gta02_speaker_enabled);
lm4853_state |= LM4853_SPK;
gpio_set_value(GTA02_GPIO_HP_IN, 0);
} else {
lm4853_state &= ~LM4853_SPK;
gpio_set_value(GTA02_GPIO_HP_IN, 1);
}
return 0; return 0;
} }
...@@ -242,14 +209,12 @@ static int lm4853_set_spk(struct snd_kcontrol *kcontrol, ...@@ -242,14 +209,12 @@ static int lm4853_set_spk(struct snd_kcontrol *kcontrol,
static int lm4853_get_spk(struct snd_kcontrol *kcontrol, static int lm4853_get_spk(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
ucontrol->value.integer.value[0] = (lm4853_state & LM4853_SPK) >> 1; ucontrol->value.integer.value[0] = gta02_speaker_enabled;
return 0; return 0;
} }
static int lm4853_event(struct snd_soc_dapm_widget *w, static int lm4853_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *k, struct snd_kcontrol *k, int event)
int event)
{ {
gpio_set_value(GTA02_GPIO_AMP_SHUT, SND_SOC_DAPM_EVENT_OFF(event)); gpio_set_value(GTA02_GPIO_AMP_SHUT, SND_SOC_DAPM_EVENT_OFF(event));
...@@ -304,13 +269,7 @@ static const struct snd_kcontrol_new wm8753_neo1973_gta02_controls[] = { ...@@ -304,13 +269,7 @@ static const struct snd_kcontrol_new wm8753_neo1973_gta02_controls[] = {
SOC_DAPM_PIN_SWITCH("Handset Mic"), SOC_DAPM_PIN_SWITCH("Handset Mic"),
SOC_DAPM_PIN_SWITCH("Handset Spk"), SOC_DAPM_PIN_SWITCH("Handset Spk"),
/* This has no effect, it exists only to maintain compatibility with SOC_SINGLE_BOOL_EXT("Amp Spk Switch", 0,
* existing ALSA state files.
*/
SOC_SINGLE_EXT("Amp State Switch", 6, 0, 1, 0,
lm4853_get_state,
lm4853_set_state),
SOC_SINGLE_EXT("Amp Spk Switch", 7, 0, 1, 0,
lm4853_get_spk, lm4853_get_spk,
lm4853_set_spk), lm4853_set_spk),
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册