aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos/mach-armlex4210.c
diff options
context:
space:
mode:
authorThomas Abraham <thomas.abraham@linaro.org>2012-04-14 11:12:04 -0400
committerKukjin Kim <kgene.kim@samsung.com>2012-04-21 11:24:56 -0400
commit81d413554a020ebe4f1f761cc5c417a306687511 (patch)
treeb37b66efa170c472abb06990f1ac433588a712ac /arch/arm/mach-exynos/mach-armlex4210.c
parente816b57a337ea3b755de72bec38c10c864f23015 (diff)
ARM: SAMSUNG: remove all uses of clk_type member in sdhci platform data
The sdhci driver is modified to be independent of clk_type member in the sdhci platform data. Hence, all usage of clk_type in platform code is removed. Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org> [kgene.kim@samsung.com: re-worked on top of v3.4-rc2] Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos/mach-armlex4210.c')
-rw-r--r--arch/arm/mach-exynos/mach-armlex4210.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-exynos/mach-armlex4210.c b/arch/arm/mach-exynos/mach-armlex4210.c
index d726fcd3acf9..a1e70070afda 100644
--- a/arch/arm/mach-exynos/mach-armlex4210.c
+++ b/arch/arm/mach-exynos/mach-armlex4210.c
@@ -77,7 +77,6 @@ static struct s3c2410_uartcfg armlex4210_uartcfgs[] __initdata = {
77 77
78static struct s3c_sdhci_platdata armlex4210_hsmmc0_pdata __initdata = { 78static struct s3c_sdhci_platdata armlex4210_hsmmc0_pdata __initdata = {
79 .cd_type = S3C_SDHCI_CD_PERMANENT, 79 .cd_type = S3C_SDHCI_CD_PERMANENT,
80 .clk_type = S3C_SDHCI_CLK_DIV_EXTERNAL,
81#ifdef CONFIG_EXYNOS4_SDHCI_CH0_8BIT 80#ifdef CONFIG_EXYNOS4_SDHCI_CH0_8BIT
82 .max_width = 8, 81 .max_width = 8,
83 .host_caps = MMC_CAP_8_BIT_DATA, 82 .host_caps = MMC_CAP_8_BIT_DATA,
@@ -88,13 +87,11 @@ static struct s3c_sdhci_platdata armlex4210_hsmmc2_pdata __initdata = {
88 .cd_type = S3C_SDHCI_CD_GPIO, 87 .cd_type = S3C_SDHCI_CD_GPIO,
89 .ext_cd_gpio = EXYNOS4_GPX2(5), 88 .ext_cd_gpio = EXYNOS4_GPX2(5),
90 .ext_cd_gpio_invert = 1, 89 .ext_cd_gpio_invert = 1,
91 .clk_type = S3C_SDHCI_CLK_DIV_EXTERNAL,
92 .max_width = 4, 90 .max_width = 4,
93}; 91};
94 92
95static struct s3c_sdhci_platdata armlex4210_hsmmc3_pdata __initdata = { 93static struct s3c_sdhci_platdata armlex4210_hsmmc3_pdata __initdata = {
96 .cd_type = S3C_SDHCI_CD_PERMANENT, 94 .cd_type = S3C_SDHCI_CD_PERMANENT,
97 .clk_type = S3C_SDHCI_CLK_DIV_EXTERNAL,
98 .max_width = 4, 95 .max_width = 4,
99}; 96};
100 97