diff options
author | Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | 2016-11-22 19:58:57 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-11-22 20:24:43 +0300 |
commit | 685f51a5eb98779147abb39f584b115ccdd87a4a (patch) | |
tree | 13a2064efcf262a16a2db0af4d8bcb310bcc6312 /sound/soc/codecs/wm_adsp.h | |
parent | 87aa63746260e3e9db2fe6b6d8e97b55bdb63a2b (diff) | |
download | linux-685f51a5eb98779147abb39f584b115ccdd87a4a.tar.xz |
ASoC: wm_adsp: Firmware controls should be added as codec controls
We were adding firmware controls as card controls (using
snd_soc_add_codec_controls). The DSP is part of a specific codec so
we should be adding them as codec controls. Adding as codec controls
also means that if the codec has a name_prefix it will be added to
the control name, which won't happen when adding as a card control.
As that was the only use of the card pointer in struct wm_adsp it can
be removed.
For ADSP2 codecs a wm_adsp2_codec_probe() was added since the original
control handling was written, and that's the logical place to store a
pointer to the codec rather than delaying it until the codec is
powered-up.
For ADSP1 we don't use a codec_probe() stage so the codec pointer
initialization replaces the original card pointer initialization in
wm_adsp1_event().
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm_adsp.h b/sound/soc/codecs/wm_adsp.h index 362dd7ce60d8..3f7c8ee42243 100644 --- a/sound/soc/codecs/wm_adsp.h +++ b/sound/soc/codecs/wm_adsp.h @@ -44,7 +44,7 @@ struct wm_adsp { int type; struct device *dev; struct regmap *regmap; - struct snd_soc_card *card; + struct snd_soc_codec *codec; int base; int sysclk_reg; |