ASoC: SND_SOC_DAIFMT_NB_NF become 0 as default settings
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Wed, 16 Jan 2013 04:18:23 +0000 (20:18 -0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 16 Jan 2013 11:28:24 +0000 (20:28 +0900)
Current soc-dai.h defines SND_SOC_DAIFMT_NB_NF as (1 << 8),
but normal bit clock / normal frame should be
default settings (= 0).
This patch fixup SND_SOC_DAIFMT_NB_NF as (0 << 8).

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..90dc00434da8beef2cbc05b2787462fac74e3739 100644 (file)
@@ -53,7 +53,7 @@ struct snd_compr_stream;
  * Specifies whether the DAI can also support inverted clocks for the specified
  * format.
  */
-#define SND_SOC_DAIFMT_NB_NF           (1 << 8) /* normal bit clock + frame */
+#define SND_SOC_DAIFMT_NB_NF           (0 << 8) /* normal bit clock + frame */
 #define SND_SOC_DAIFMT_NB_IF           (2 << 8) /* normal BCLK + inv FRM */
 #define SND_SOC_DAIFMT_IB_NF           (3 << 8) /* invert BCLK + nor FRM */
 #define SND_SOC_DAIFMT_IB_IF           (4 << 8) /* invert BCLK + FRM */
This page took 0.024825 seconds and 5 git commands to generate.