Skip to content

Commit

Permalink
ASoC: dapm: Move snd_soc_dapm_update from dapm context to card
Browse files Browse the repository at this point in the history
The update field of a DAPM context is only assigned while the card's dapm_mutex
is locked, the field is also cleared again while the mutex is stil locked. So
there will only ever be one DAPM context at a time with a non-NULL update field.
So it is safe to move the update field from the DAPM context struct to the card
struct. Doing so will allow further cleanups in this area.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Lars-Peter Clausen authored and Mark Brown committed Jul 29, 2013
1 parent 60529c6 commit 564c650
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
2 changes: 0 additions & 2 deletions include/sound/soc-dapm.h
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,6 @@ struct snd_soc_dapm_context {
struct delayed_work delayed_work;
unsigned int idle_bias_off:1; /* Use BIAS_OFF instead of STANDBY */

struct snd_soc_dapm_update *update;

void (*seq_notifier)(struct snd_soc_dapm_context *,
enum snd_soc_dapm_type, int);

Expand Down
1 change: 1 addition & 0 deletions include/sound/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,7 @@ struct snd_soc_card {
/* Generic DAPM context for the card */
struct snd_soc_dapm_context dapm;
struct snd_soc_dapm_stats dapm_stats;
struct snd_soc_dapm_update *update;

#ifdef CONFIG_DEBUG_FS
struct dentry *debugfs_card_root;
Expand Down
22 changes: 11 additions & 11 deletions sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,7 @@ static void dapm_seq_run(struct snd_soc_dapm_context *dapm,

static void dapm_widget_update(struct snd_soc_dapm_context *dapm)
{
struct snd_soc_dapm_update *update = dapm->update;
struct snd_soc_dapm_update *update = dapm->card->update;
struct snd_soc_dapm_widget_list *wlist;
struct snd_soc_dapm_widget *w = NULL;
unsigned int wi;
Expand Down Expand Up @@ -1959,9 +1959,9 @@ int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
int ret;

mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
dapm->update = update;
card->update = update;
ret = soc_dapm_mux_update_power(dapm, kcontrol, mux, e);
dapm->update = NULL;
card->update = NULL;
mutex_unlock(&card->dapm_mutex);
if (ret > 0)
soc_dpcm_runtime_update(card);
Expand Down Expand Up @@ -2002,9 +2002,9 @@ int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
int ret;

mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
dapm->update = update;
card->update = update;
ret = soc_dapm_mixer_update_power(dapm, kcontrol, connect);
dapm->update = NULL;
card->update = NULL;
mutex_unlock(&card->dapm_mutex);
if (ret > 0)
soc_dpcm_runtime_update(card);
Expand Down Expand Up @@ -2693,11 +2693,11 @@ int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
update.mask = mask;
update.val = val;

widget->dapm->update = &update;
card->update = &update;

soc_dapm_mixer_update_power(widget->dapm, kcontrol, connect);

widget->dapm->update = NULL;
card->update = NULL;
}

mutex_unlock(&card->dapm_mutex);
Expand Down Expand Up @@ -2775,11 +2775,11 @@ int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
update.reg = e->reg;
update.mask = mask;
update.val = val;
widget->dapm->update = &update;
card->update = &update;

soc_dapm_mux_update_power(widget->dapm, kcontrol, mux, e);

widget->dapm->update = NULL;
card->update = NULL;
}

mutex_unlock(&card->dapm_mutex);
Expand Down Expand Up @@ -2928,11 +2928,11 @@ int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
update.reg = e->reg;
update.mask = mask;
update.val = val;
widget->dapm->update = &update;
card->update = &update;

soc_dapm_mux_update_power(widget->dapm, kcontrol, mux, e);

widget->dapm->update = NULL;
card->update = NULL;
}

mutex_unlock(&card->dapm_mutex);
Expand Down

0 comments on commit 564c650

Please sign in to comment.