diff options
author | Stuart Henderson <stuarth@opensource.cirrus.com> | 2019-02-22 10:04:20 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-02-22 15:13:57 +0000 |
commit | 4f2d4eabf57718875b97363a3bd35de490f354c5 (patch) | |
tree | 22a2d161ce0ac6f8cf698c573bba8800bc326381 /sound/soc/codecs/wm_adsp.h | |
parent | a792af69b08fd7f89b156c8cba1dfc2088522582 (diff) | |
download | linux-4f2d4eabf57718875b97363a3bd35de490f354c5.tar.bz2 |
ASoC: wm_adsp: Add support for multiple compressed buffers
Currently, only a single compressed stream is supported per firmware.
Add support for multiple compressed streams on a single firmware, this
allows additional features like completely independent trigger words or
separate debug capture streams to be implemented.
Signed-off-by: Stuart Henderson <stuarth@opensource.cirrus.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm_adsp.h')
-rw-r--r-- | sound/soc/codecs/wm_adsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm_adsp.h b/sound/soc/codecs/wm_adsp.h index 4b8778b0b06c..59e07ad16329 100644 --- a/sound/soc/codecs/wm_adsp.h +++ b/sound/soc/codecs/wm_adsp.h @@ -90,8 +90,8 @@ struct wm_adsp { struct work_struct boot_work; - struct wm_adsp_compr *compr; - struct wm_adsp_compr_buf *buffer; + struct list_head compr_list; + struct list_head buffer_list; struct mutex pwr_lock; |