diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-06-16 20:13:05 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-22 00:34:15 +0400 |
commit | 68f831c2724ab72c0088471b2ed1dc99e81948ef (patch) | |
tree | a012025f0f8ad7de6a9c9af02afc752f088d0c13 /include/sound/soc-dapm.h | |
parent | 647d62d9ff499ad3a2f8dc067aae3ed82386cf05 (diff) | |
download | linux-68f831c2724ab72c0088471b2ed1dc99e81948ef.tar.xz |
ASoC: Add a set_bias_level() callback to the DAPM context struct
Currently the DAPM code directly looks at the CODEC driver struct to get a
handle to the set_bias_level() callback. This patch adds a new set_bias_level()
callback to the DAPM context struct. The DAPM code will use this new callback
instead of the CODEC callback. For CODECs the new callback is set up to call the
CODEC specific set_bias_level callback(). Not looking directly at the CODEC
driver struct will allow non CODEC DAPM contexts to implement a set_bias_level()
callback.
This is also similar to how the seq_notifier() and stream_event() callbacks are
currently handled.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound/soc-dapm.h')
-rw-r--r-- | include/sound/soc-dapm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index 8db627cc2fbe..3a5c4f969c04 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h @@ -601,6 +601,8 @@ struct snd_soc_dapm_context { struct list_head list; int (*stream_event)(struct snd_soc_dapm_context *dapm, int event); + int (*set_bias_level)(struct snd_soc_dapm_context *dapm, + enum snd_soc_bias_level level); #ifdef CONFIG_DEBUG_FS struct dentry *debugfs_dapm; |