提交 eef28e10 编写于 作者: K Kuninori Morimoto 提交者: Mark Brown

ASoC: SND_SOC_DAIFMT_GATED become 0 as default settings

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: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 a7930ed4
...@@ -45,7 +45,7 @@ struct snd_compr_stream; ...@@ -45,7 +45,7 @@ struct snd_compr_stream;
* sending or receiving PCM data in a frame. This can be used to save power. * 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_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. * DAI hardware signal inversions.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册