ASoC: SND_SOC_DAIFMT_GATED become 0 as default settings
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Wed, 30 Jan 2013 05:03:13 +0000 (21:03 -0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 30 Jan 2013 08:42:24 +0000 (16:42 +0800)
Current soc-dai.h defines SND_SOC_DAIFMT_GATED as (2 << 4),
but gated clock should be default settings (= 0).
This patch fixup SND_SOC_DAIFMT_GATED as (0 << 4).

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
include/sound/soc-dai.h

index 3953cea0ecfbf4255525bc00e821d5b031564070..4dbd3e78eb87d91dec05a4c091c1d902ff1b5778 100644 (file)
@@ -45,7 +45,7 @@ struct snd_compr_stream;
  * sending or receiving PCM data in a frame. This can be used to save power.
  */
 #define SND_SOC_DAIFMT_CONT            (1 << 4) /* continuous clock */
-#define SND_SOC_DAIFMT_GATED           (2 << 4) /* clock is gated */
+#define SND_SOC_DAIFMT_GATED           (0 << 4) /* clock is gated */
 
 /*
  * DAI hardware signal inversions.
This page took 0.026171 seconds and 5 git commands to generate.