summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJarkko Nikula <jhnikula@gmail.com>2010-08-31 14:52:35 +0300
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-08-31 13:06:40 +0100
commit4e48541676f019145b555761d89bf4f8607d3de0 (patch)
treea9bc243211d1f28322e739e64327b8ad0832085d /include
parentffc4fdbbe1b4be79e98340ebcd5a0ade6f5de318 (diff)
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index d31e8b7b2d5e..493b3a4c193a 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;