From: Jarkko Nikula Date: Tue, 31 Aug 2010 11:52:35 +0000 (+0300) Subject: ASoC: Swap bias level enumeration X-Git-Tag: v2.6.37-rc1~82^2~8^2~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e48541676f019145b555761d89bf4f8607d3de0;p=platform%2Fkernel%2Flinux-3.10.git 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 Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- diff --git a/include/sound/soc.h b/include/sound/soc.h index d31e8b7..493b3a4 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;