diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2014-03-16 17:37:06 -0700 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@open.eurogiciel.org> | 2015-02-04 11:14:09 +0100 |
commit | 9f6058472fcd2f4f8f04530ead285875cddb7640 (patch) | |
tree | 5072eb1451e1f89bf4017963126718c623258fe2 | |
parent | 4797041855269662802420ff4c31259a5e0e7e88 (diff) | |
download | linux-stable-9f6058472fcd2f4f8f04530ead285875cddb7640.tar.gz linux-stable-9f6058472fcd2f4f8f04530ead285875cddb7640.tar.bz2 linux-stable-9f6058472fcd2f4f8f04530ead285875cddb7640.zip |
ASoC: fsi: fixup compile error for simple-card
This patches fixes
c7a507eea1db1430476289f525f9c853d5d485e8
(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 <kuninori.morimoto.gx@renesas.com>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Mark Brown <broonie@linaro.org>
(cherry picked from commit 313c84b2736b26c77af7c7637e7dd72afde1b6cd)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/mach-shmobile/board-mackerel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c index 8c4332182b42..0ff4d8e45cf7 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", }, |