diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2019-03-19 14:52:12 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-03-19 15:40:38 +0300 |
commit | 4e08d50d1fb6144df4b0b5c75a17edd344bf3d1b (patch) | |
tree | f5ede9d31e5afebbf091e68c7f7742f030a6f72d /sound/soc/codecs/wm5102.c | |
parent | a5dcb24d70ffbb4ea47b8eefad1158d033b9dec9 (diff) | |
download | linux-4e08d50d1fb6144df4b0b5c75a17edd344bf3d1b.tar.xz |
ASoC: wm_adsp: Factor out DSP specific operations
In preparation for the addition of more types of DSP core refactor the
handling of DSP specific operations such as starting the memory or
enabling the core into a set of callbacks. This should make it easier to
add new core types and allow for more code reuse between them.
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm5102.c')
-rw-r--r-- | sound/soc/codecs/wm5102.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm5102.c b/sound/soc/codecs/wm5102.c index c972591f1cc4..b32e8313954d 100644 --- a/sound/soc/codecs/wm5102.c +++ b/sound/soc/codecs/wm5102.c @@ -661,7 +661,7 @@ static int wm5102_adsp_power_ev(struct snd_soc_dapm_widget *w, break; } - return wm_adsp2_early_event(w, kcontrol, event); + return wm_adsp_early_event(w, kcontrol, event); } static int wm5102_out_comp_coeff_get(struct snd_kcontrol *kcontrol, |