From: Ulf Hansson Date: Thu, 18 Dec 2014 14:44:31 +0000 (+0100) Subject: mmc: sdhci-sirf: Remove redundant use of mmc_gpio_free_cd() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c2f28eecdab3894a931c34c1904bdb502bd0a05f;p=linux-beck.git mmc: sdhci-sirf: Remove redundant use of mmc_gpio_free_cd() The MMC core makes use of the devm_* functions while requesting the CD/WP GPIOs, let's rely on that. Cc: Barry Song Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-sirf.c b/drivers/mmc/host/sdhci-sirf.c index 5b956b37165f..f6f82ec3618d 100644 --- a/drivers/mmc/host/sdhci-sirf.c +++ b/drivers/mmc/host/sdhci-sirf.c @@ -209,9 +209,6 @@ static int sdhci_sirf_remove(struct platform_device *pdev) sdhci_pltfm_unregister(pdev); - if (gpio_is_valid(priv->gpio_cd)) - mmc_gpio_free_cd(host->mmc); - clk_disable_unprepare(priv->clk); return 0; }