diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2017-10-11 01:37:23 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-10-23 11:27:13 +0200 |
commit | b8135864d4d33d0c35516ec758b9b73226935c5d (patch) | |
tree | 122b7d1061ef1e8423bee6b915e1bf5ff8b9401a /include/sound | |
parent | 08e61d03b08c99f611227c6e94c70cf0029fdeb6 (diff) | |
download | linux-b8135864d4d33d0c35516ec758b9b73226935c5d.tar.bz2 |
ASoC: snd_soc_component_driver has snd_pcm_ops
Platform will be replaced into Component in the future.
snd_soc_platform_driver has snd_pcm_ops, but snd_soc_component_driver
doesn't have it. To prepare for replacing, this patch adds snd_pcm_ops
on component driver.
platform will be replaced into component, and its code will be removed.
But during replacing, both platform and component process code exists.
To keep compatibility, to avoid platform NULL access and to avoid
platform/component duplicate operation during replacing process, this
patch has such code. Some of this code will be removed when platform was
removed.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/soc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index eea3007a28f1..2acb56673bab 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -826,6 +826,8 @@ struct snd_soc_component_driver { int (*set_bias_level)(struct snd_soc_component *component, enum snd_soc_bias_level level); + const struct snd_pcm_ops *ops; + /* probe ordering - for components with runtime dependencies */ int probe_order; int remove_order; |