ASoC: dapm: Rename dapm mutex subclass to better match usage
Rename SND_SOC_DAPM_CLASS_PCM to SND_SOC_DAPM_CLASS_RUNTIME to better match the usage and align with card mutex too. Signed-off-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
6874a918de
commit
3cd043436c
|
@ -433,8 +433,8 @@ enum snd_soc_dapm_type {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum snd_soc_dapm_subclass {
|
enum snd_soc_dapm_subclass {
|
||||||
SND_SOC_DAPM_CLASS_INIT = 0,
|
SND_SOC_DAPM_CLASS_INIT = 0,
|
||||||
SND_SOC_DAPM_CLASS_PCM = 1,
|
SND_SOC_DAPM_CLASS_RUNTIME = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1765,7 +1765,7 @@ int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
|
||||||
struct snd_soc_card *card = widget->dapm->card;
|
struct snd_soc_card *card = widget->dapm->card;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
ret = soc_dapm_mux_update_power(widget, kcontrol, mux, e);
|
ret = soc_dapm_mux_update_power(widget, kcontrol, mux, e);
|
||||||
mutex_unlock(&card->dapm_mutex);
|
mutex_unlock(&card->dapm_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1809,7 +1809,7 @@ int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
|
||||||
struct snd_soc_card *card = widget->dapm->card;
|
struct snd_soc_card *card = widget->dapm->card;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
ret = soc_dapm_mixer_update_power(widget, kcontrol, connect);
|
ret = soc_dapm_mixer_update_power(widget, kcontrol, connect);
|
||||||
mutex_unlock(&card->dapm_mutex);
|
mutex_unlock(&card->dapm_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1982,7 +1982,7 @@ int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
|
||||||
if (!dapm->card || !dapm->card->instantiated)
|
if (!dapm->card || !dapm->card->instantiated)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
ret = dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
|
ret = dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
|
||||||
mutex_unlock(&dapm->card->dapm_mutex);
|
mutex_unlock(&dapm->card->dapm_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -2401,7 +2401,7 @@ int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
|
||||||
/* old connection must be powered down */
|
/* old connection must be powered down */
|
||||||
connect = invert ? 1 : 0;
|
connect = invert ? 1 : 0;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
change = snd_soc_test_bits(widget->codec, reg, mask, val);
|
change = snd_soc_test_bits(widget->codec, reg, mask, val);
|
||||||
if (change) {
|
if (change) {
|
||||||
|
@ -2493,7 +2493,7 @@ int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
|
||||||
mask |= (bitmask - 1) << e->shift_r;
|
mask |= (bitmask - 1) << e->shift_r;
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
|
change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
|
||||||
if (change) {
|
if (change) {
|
||||||
|
@ -2562,7 +2562,7 @@ int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
|
||||||
if (ucontrol->value.enumerated.item[0] >= e->max)
|
if (ucontrol->value.enumerated.item[0] >= e->max)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
change = widget->value != ucontrol->value.enumerated.item[0];
|
change = widget->value != ucontrol->value.enumerated.item[0];
|
||||||
if (change) {
|
if (change) {
|
||||||
|
@ -2659,7 +2659,7 @@ int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
|
||||||
mask |= e->mask << e->shift_r;
|
mask |= e->mask << e->shift_r;
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
|
change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
|
||||||
if (change) {
|
if (change) {
|
||||||
|
@ -2718,7 +2718,7 @@ int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
|
||||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||||
const char *pin = (const char *)kcontrol->private_value;
|
const char *pin = (const char *)kcontrol->private_value;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
ucontrol->value.integer.value[0] =
|
ucontrol->value.integer.value[0] =
|
||||||
snd_soc_dapm_get_pin_status(&card->dapm, pin);
|
snd_soc_dapm_get_pin_status(&card->dapm, pin);
|
||||||
|
@ -2741,7 +2741,7 @@ int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
|
||||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||||
const char *pin = (const char *)kcontrol->private_value;
|
const char *pin = (const char *)kcontrol->private_value;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
|
|
||||||
if (ucontrol->value.integer.value[0])
|
if (ucontrol->value.integer.value[0])
|
||||||
snd_soc_dapm_enable_pin(&card->dapm, pin);
|
snd_soc_dapm_enable_pin(&card->dapm, pin);
|
||||||
|
@ -3060,7 +3060,7 @@ void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
|
||||||
{
|
{
|
||||||
struct snd_soc_card *card = rtd->card;
|
struct snd_soc_card *card = rtd->card;
|
||||||
|
|
||||||
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_PCM);
|
mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
||||||
soc_dapm_stream_event(rtd, stream, event);
|
soc_dapm_stream_event(rtd, stream, event);
|
||||||
mutex_unlock(&card->dapm_mutex);
|
mutex_unlock(&card->dapm_mutex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user