summaryrefslogtreecommitdiffstats
path: root/include/sound/soc.h
diff options
context:
space:
mode:
authorLars-Peter Clausen2014-03-05 13:17:47 +0100
committerMark Brown2014-03-06 10:04:55 +0100
commitcdde4ccb14b4959bd1c96a07367bf02b746328d3 (patch)
treed810edb5e51f268dfb1005a8e74ba90cc3dd9f69 /include/sound/soc.h
parentASoC: Add component pointer to the DAI struct (diff)
downloadkernel-qcow2-linux-cdde4ccb14b4959bd1c96a07367bf02b746328d3.tar.gz
kernel-qcow2-linux-cdde4ccb14b4959bd1c96a07367bf02b746328d3.tar.xz
kernel-qcow2-linux-cdde4ccb14b4959bd1c96a07367bf02b746328d3.zip
ASoC: Move active count from CODEC to component
There is no reason why active count tracking should only be done for CODECs but not for other components. Moving the active count from the snd_soc_codec struct to the snd_soc_component struct reduces the differences between CODECs and other components and will eventually allow component to component DAI links (Which is a prerequisite for converting CODECs to components). Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r--include/sound/soc.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 5c2b4f4b5cfa..0495b4aaeb70 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -660,6 +660,9 @@ struct snd_soc_component {
const char *name;
int id;
struct device *dev;
+
+ unsigned int active;
+
struct list_head list;
struct snd_soc_dai_driver *dai_drv;
@@ -687,7 +690,6 @@ struct snd_soc_codec {
/* runtime */
struct snd_ac97 *ac97; /* for ad-hoc ac97 devices */
- unsigned int active;
unsigned int cache_bypass:1; /* Suppress access to the cache */
unsigned int suspended:1; /* Codec is in suspend PM state */
unsigned int probed:1; /* Codec has been probed */
@@ -1172,9 +1174,15 @@ static inline bool snd_soc_volsw_is_stereo(struct soc_mixer_control *mc)
return 1;
}
+static inline bool snd_soc_component_is_active(
+ struct snd_soc_component *component)
+{
+ return component->active != 0;
+}
+
static inline bool snd_soc_codec_is_active(struct snd_soc_codec *codec)
{
- return codec->active != 0;
+ return snd_soc_component_is_active(&codec->component);
}
int snd_soc_util_init(void);