mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
ASoC: Intel: atom: Take the drv->lock mutex before calling sst_send_slot_map()
sst_send_slot_map() uses sst_fill_and_send_cmd_unlocked() because in some
places it is called with the drv->lock mutex already held.
So it must always be called with the mutex locked. This commit adds missing
locking in the sst_set_be_modules() code-path.
Fixes: 24c8d14192
("ASoC: Intel: mrfld: add DSP core controls")
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200402185359.3424-1-hdegoede@redhat.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
904f353d0e
commit
81630dc042
@ -966,7 +966,9 @@ static int sst_set_be_modules(struct snd_soc_dapm_widget *w,
|
|||||||
dev_dbg(c->dev, "Enter: widget=%s\n", w->name);
|
dev_dbg(c->dev, "Enter: widget=%s\n", w->name);
|
||||||
|
|
||||||
if (SND_SOC_DAPM_EVENT_ON(event)) {
|
if (SND_SOC_DAPM_EVENT_ON(event)) {
|
||||||
|
mutex_lock(&drv->lock);
|
||||||
ret = sst_send_slot_map(drv);
|
ret = sst_send_slot_map(drv);
|
||||||
|
mutex_unlock(&drv->lock);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
ret = sst_send_pipe_module_params(w, k);
|
ret = sst_send_pipe_module_params(w, k);
|
||||||
|
Loading…
Reference in New Issue
Block a user