diff options
author | Jarkko Nikula <jhnikula@gmail.com> | 2010-08-31 14:52:35 +0300 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-08-31 13:06:40 +0100 |
commit | 4e48541676f019145b555761d89bf4f8607d3de0 (patch) | |
tree | a9bc243211d1f28322e739e64327b8ad0832085d /include | |
parent | ffc4fdbbe1b4be79e98340ebcd5a0ade6f5de318 (diff) | |
download | linux-3.10-4e48541676f019145b555761d89bf4f8607d3de0.tar.gz linux-3.10-4e48541676f019145b555761d89bf4f8607d3de0.tar.bz2 linux-3.10-4e48541676f019145b555761d89bf4f8607d3de0.zip |
ASoC: Swap bias level enumeration
Swapping the bias level enumeration is only meant to help debugging. It is
easier if number 0 means bias off and bigger number means bigger bias level.
Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sound/soc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index d31e8b7b2d5..493b3a4c193 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -214,10 +214,10 @@ * @OFF: Power Off. No restrictions on transition times. */ enum snd_soc_bias_level { - SND_SOC_BIAS_ON, - SND_SOC_BIAS_PREPARE, - SND_SOC_BIAS_STANDBY, SND_SOC_BIAS_OFF, + SND_SOC_BIAS_STANDBY, + SND_SOC_BIAS_PREPARE, + SND_SOC_BIAS_ON, }; struct snd_jack; |