Commit d30656e5 authored by Ulf Hansson's avatar Ulf Hansson

mmc: mvsdio: Remove redundant use of mmc_gpio_free_cd|ro()

The MMC core makes use of the devm_* functions while requesting the
CD/WP GPIOs, let's rely on that.

Cc: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 9116752f
...@@ -828,8 +828,6 @@ static int mvsd_probe(struct platform_device *pdev) ...@@ -828,8 +828,6 @@ static int mvsd_probe(struct platform_device *pdev)
out: out:
if (mmc) { if (mmc) {
mmc_gpio_free_cd(mmc);
mmc_gpio_free_ro(mmc);
if (!IS_ERR(host->clk)) if (!IS_ERR(host->clk))
clk_disable_unprepare(host->clk); clk_disable_unprepare(host->clk);
mmc_free_host(mmc); mmc_free_host(mmc);
...@@ -844,8 +842,6 @@ static int mvsd_remove(struct platform_device *pdev) ...@@ -844,8 +842,6 @@ static int mvsd_remove(struct platform_device *pdev)
struct mvsd_host *host = mmc_priv(mmc); struct mvsd_host *host = mmc_priv(mmc);
mmc_gpio_free_cd(mmc);
mmc_gpio_free_ro(mmc);
mmc_remove_host(mmc); mmc_remove_host(mmc);
del_timer_sync(&host->timer); del_timer_sync(&host->timer);
mvsd_power_down(host); mvsd_power_down(host);
......
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