diff options
author | Tzung-Bi Shih <tzungbi@google.com> | 2020-06-25 18:35:41 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-25 21:21:00 +0300 |
commit | 10e834099d38dd2c02bf2bd5feaa3997cfcf139f (patch) | |
tree | e5f0a99fdf0e87d7f7ddbc0423fd47976c295162 /include/sound/soc.h | |
parent | 6f81e520b2906258a063f09b8d1dd9d0cc6a3172 (diff) | |
download | linux-10e834099d38dd2c02bf2bd5feaa3997cfcf139f.tar.xz |
ASoC: core: move definition of enum snd_soc_bias_level
To fix compilation error:
- error: field 'XXX' has incomplete type
Moves definition of enum snd_soc_bias_level from soc.h to soc-dapm.h.
Signed-off-by: Tzung-Bi Shih <tzungbi@google.com>
Link: https://lore.kernel.org/r/20200625153543.85039-2-tzungbi@google.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/soc.h')
-rw-r--r-- | include/sound/soc.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index 33aceadebd03..6791b7570a67 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -368,24 +368,6 @@ #define SOC_ENUM_SINGLE_VIRT_DECL(name, xtexts) \ const struct soc_enum name = SOC_ENUM_SINGLE_VIRT(ARRAY_SIZE(xtexts), xtexts) -/* - * Bias levels - * - * @ON: Bias is fully on for audio playback and capture operations. - * @PREPARE: Prepare for audio operations. Called before DAPM switching for - * stream start and stop operations. - * @STANDBY: Low power standby state when no playback/capture operations are - * in progress. NOTE: The transition time between STANDBY and ON - * should be as fast as possible and no longer than 10ms. - * @OFF: Power Off. No restrictions on transition times. - */ -enum snd_soc_bias_level { - SND_SOC_BIAS_OFF = 0, - SND_SOC_BIAS_STANDBY = 1, - SND_SOC_BIAS_PREPARE = 2, - SND_SOC_BIAS_ON = 3, -}; - struct device_node; struct snd_jack; struct snd_soc_card; |