Commit 95cc4df7 authored by Ulf Hansson's avatar Ulf Hansson

mmc: sh_mmcif: Remove unused use_cd_gpio/cd_gpio from platform data

Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 13f00f9f
...@@ -1509,12 +1509,6 @@ static int sh_mmcif_probe(struct platform_device *pdev) ...@@ -1509,12 +1509,6 @@ static int sh_mmcif_probe(struct platform_device *pdev)
} }
} }
if (pd && pd->use_cd_gpio) {
ret = mmc_gpio_request_cd(mmc, pd->cd_gpio, 0);
if (ret < 0)
goto err_clk;
}
mutex_init(&host->thread_lock); mutex_init(&host->thread_lock);
ret = mmc_add_host(mmc); ret = mmc_add_host(mmc);
......
...@@ -35,10 +35,8 @@ struct sh_mmcif_plat_data { ...@@ -35,10 +35,8 @@ struct sh_mmcif_plat_data {
int (*get_cd)(struct platform_device *pdef); int (*get_cd)(struct platform_device *pdef);
unsigned int slave_id_tx; /* embedded slave_id_[tr]x */ unsigned int slave_id_tx; /* embedded slave_id_[tr]x */
unsigned int slave_id_rx; unsigned int slave_id_rx;
bool use_cd_gpio : 1;
bool ccs_unsupported : 1; bool ccs_unsupported : 1;
bool clk_ctrl2_present : 1; bool clk_ctrl2_present : 1;
unsigned int cd_gpio;
u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */
unsigned long caps; unsigned long caps;
u32 ocr; u32 ocr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment