diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-12-17 01:12:42 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-12-24 10:57:09 -0500 |
commit | abca75814a82c0c53c0a8ec7fa1300c133bc4f01 (patch) | |
tree | d62dca5f3cd5584f8345b5b3e6aeaf67e9464c97 /arch/sh/boards/mach-ecovec24/setup.c | |
parent | 6cbdbffba19620db77de38094f407b6f21d3f10c (diff) |
ASoC: fsi: remove SH_FSI_xxx_INV flags
3449f5fab8c51e37a8a48bc2516588c615373191
(ASoC: fsi: add SND_SOC_DAIFMT_INV_xxx support)
added clock inversion support via snd_soc_dai_set_fmt().
Thus, this patch removed SH_FSI_xxx_INV and fsi_get_info()
from fsi driver, and modified platform settings to use new style.
Then, it cleaned up meaningless settings from platform.
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@opensource.wolfsonmicro.com>
Diffstat (limited to 'arch/sh/boards/mach-ecovec24/setup.c')
-rw-r--r-- | arch/sh/boards/mach-ecovec24/setup.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index 3fede4556c91..8ebe4c7a766b 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c | |||
@@ -877,12 +877,6 @@ static struct platform_device camera_devices[] = { | |||
877 | }; | 877 | }; |
878 | 878 | ||
879 | /* FSI */ | 879 | /* FSI */ |
880 | static struct sh_fsi_platform_info fsi_info = { | ||
881 | .port_b = { | ||
882 | .flags = SH_FSI_BRS_INV, | ||
883 | }, | ||
884 | }; | ||
885 | |||
886 | static struct resource fsi_resources[] = { | 880 | static struct resource fsi_resources[] = { |
887 | [0] = { | 881 | [0] = { |
888 | .name = "FSI", | 882 | .name = "FSI", |
@@ -901,15 +895,13 @@ static struct platform_device fsi_device = { | |||
901 | .id = 0, | 895 | .id = 0, |
902 | .num_resources = ARRAY_SIZE(fsi_resources), | 896 | .num_resources = ARRAY_SIZE(fsi_resources), |
903 | .resource = fsi_resources, | 897 | .resource = fsi_resources, |
904 | .dev = { | ||
905 | .platform_data = &fsi_info, | ||
906 | }, | ||
907 | }; | 898 | }; |
908 | 899 | ||
909 | static struct asoc_simple_dai_init_info fsi_da7210_init_info = { | 900 | static struct asoc_simple_dai_init_info fsi_da7210_init_info = { |
910 | .fmt = SND_SOC_DAIFMT_I2S, | 901 | .fmt = SND_SOC_DAIFMT_I2S, |
911 | .codec_daifmt = SND_SOC_DAIFMT_CBM_CFM, | 902 | .codec_daifmt = SND_SOC_DAIFMT_CBM_CFM, |
912 | .cpu_daifmt = SND_SOC_DAIFMT_CBS_CFS, | 903 | .cpu_daifmt = SND_SOC_DAIFMT_CBS_CFS | |
904 | SND_SOC_DAIFMT_IB_NF, | ||
913 | }; | 905 | }; |
914 | 906 | ||
915 | static struct asoc_simple_card_info fsi_da7210_info = { | 907 | static struct asoc_simple_card_info fsi_da7210_info = { |