diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-08-27 15:51:01 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-27 15:41:16 +0100 |
commit | 824ef826f3c4d83d1925a5e351313bfd3e5ca6cb (patch) | |
tree | 824345b44ec48d739722873e737efee21636ece8 /include/sound/soc-dapm.h | |
parent | 38f7d75edcf8ced03d03131005ed806bee746699 (diff) | |
download | blackbird-op-linux-824ef826f3c4d83d1925a5e351313bfd3e5ca6cb.tar.gz blackbird-op-linux-824ef826f3c4d83d1925a5e351313bfd3e5ca6cb.zip |
ASoC: Pass card instead of dapm context to snd_soc_dapm_new_widgets()
snd_soc_dapm_new_widgets() works on the ASoC card as a whole not on a specific
DAPM context. The DAPM context that is passed as the parameter is only used to
look up the pointer to the card. This patch updates the signature of
snd_soc_dapm_new_widgets() to take the card directly.
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, 1 insertions, 1 deletions
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index c728d28ae9a5..27a72d5d4b00 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h @@ -413,7 +413,7 @@ int snd_soc_dapm_new_pcm(struct snd_soc_card *card, struct snd_soc_dapm_widget *sink); /* dapm path setup */ -int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm); +int snd_soc_dapm_new_widgets(struct snd_soc_card *card); void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm); int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, const struct snd_soc_dapm_route *route, int num); |