diff options
Diffstat (limited to 'arch/sh/boards/mach-ecovec24')
-rw-r--r-- | arch/sh/boards/mach-ecovec24/setup.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index 023b3f06b728..aaff7671101b 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c | |||
@@ -907,21 +907,20 @@ static struct platform_device fsi_device = { | |||
907 | .resource = fsi_resources, | 907 | .resource = fsi_resources, |
908 | }; | 908 | }; |
909 | 909 | ||
910 | static struct asoc_simple_dai_init_info fsi_da7210_init_info = { | ||
911 | .fmt = SND_SOC_DAIFMT_I2S, | ||
912 | .codec_daifmt = SND_SOC_DAIFMT_CBM_CFM, | ||
913 | .cpu_daifmt = SND_SOC_DAIFMT_CBS_CFS | | ||
914 | SND_SOC_DAIFMT_IB_NF, | ||
915 | }; | ||
916 | |||
917 | static struct asoc_simple_card_info fsi_da7210_info = { | 910 | static struct asoc_simple_card_info fsi_da7210_info = { |
918 | .name = "DA7210", | 911 | .name = "DA7210", |
919 | .card = "FSIB-DA7210", | 912 | .card = "FSIB-DA7210", |
920 | .cpu_dai = "fsib-dai", | ||
921 | .codec = "da7210.0-001a", | 913 | .codec = "da7210.0-001a", |
922 | .platform = "sh_fsi.0", | 914 | .platform = "sh_fsi.0", |
923 | .codec_dai = "da7210-hifi", | 915 | .daifmt = SND_SOC_DAIFMT_I2S, |
924 | .init = &fsi_da7210_init_info, | 916 | .cpu_dai = { |
917 | .name = "fsib-dai", | ||
918 | .fmt = SND_SOC_DAIFMT_CBS_CFS | SND_SOC_DAIFMT_IB_NF, | ||
919 | }, | ||
920 | .codec_dai = { | ||
921 | .name = "da7210-hifi", | ||
922 | .fmt = SND_SOC_DAIFMT_CBM_CFM, | ||
923 | }, | ||
925 | }; | 924 | }; |
926 | 925 | ||
927 | static struct platform_device fsi_da7210_device = { | 926 | static struct platform_device fsi_da7210_device = { |