From e87ea291fb5abe487f17032aedea9737fecdb4ff Mon Sep 17 00:00:00 2001 From: Kuninori Morimoto Date: Sun, 16 Mar 2014 17:37:06 -0700 Subject: [PATCH] ASoC: fsi: fixup compile error for simple-card This patches fixes dcee33d36267d70637fe121a15275560b0220ed4 (ASoC: fsi: fixup SND_SOC_DAIFMT_CBx_CFx flags) commit's compie error arch/arm/mach-shmobile/board-mackerel.c:512:2: \ error: unknown field 'fmt' specified in initializer Signed-off-by: Kuninori Morimoto Acked-by: Simon Horman Signed-off-by: Mark Brown --- arch/arm/mach-shmobile/board-mackerel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c index 8c4332182b42b..0ff4d8e45cf7d 100644 --- a/arch/arm/mach-shmobile/board-mackerel.c +++ b/arch/arm/mach-shmobile/board-mackerel.c @@ -509,7 +509,7 @@ static struct asoc_simple_card_info fsi2_hdmi_info = { .card = "FSI2B-HDMI", .codec = "sh-mobile-hdmi", .platform = "sh_fsi2", - .fmt = SND_SOC_DAIFMT_CBS_CFS, + .daifmt = SND_SOC_DAIFMT_CBS_CFS, .cpu_dai = { .name = "fsib-dai", }, -- 2.39.5