diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2019-03-19 11:52:12 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-03-19 12:40:38 +0000 |
commit | 4e08d50d1fb6144df4b0b5c75a17edd344bf3d1b (patch) | |
tree | f5ede9d31e5afebbf091e68c7f7742f030a6f72d /sound/soc/codecs/wm5110.c | |
parent | a5dcb24d70ffbb4ea47b8eefad1158d033b9dec9 (diff) | |
download | linux-4e08d50d1fb6144df4b0b5c75a17edd344bf3d1b.tar.bz2 |
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/wm5110.c')
-rw-r--r-- | sound/soc/codecs/wm5110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c index c543b73e2f20..1f500cc8d96a 100644 --- a/sound/soc/codecs/wm5110.c +++ b/sound/soc/codecs/wm5110.c @@ -213,7 +213,7 @@ static int wm5110_adsp_power_ev(struct snd_soc_dapm_widget *w, wm_adsp2_set_dspclk(w, v); - return wm_adsp2_early_event(w, kcontrol, event); + return wm_adsp_early_event(w, kcontrol, event); } static const struct reg_sequence wm5110_no_dre_left_enable[] = { |