From d1a13c5ed3b0c5d75aa413195fbd150adfa93cc8 Mon Sep 17 00:00:00 2001 From: Jisheng Zhang Date: Tue, 26 Jan 2016 18:26:03 +0800 Subject: [PATCH] mmc: sdhci-iproc: use sdhci_pltfm_unregister directly The sdhci_iproc_remove() is jsut a wrapper to sdhci_pltfm_unregister. So use the sdhci_pltfm_unregister() for the .remove hook directly. Signed-off-by: Jisheng Zhang Acked-by: Scott Branden Signed-off-by: Ulf Hansson --- drivers/mmc/host/sdhci-iproc.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/mmc/host/sdhci-iproc.c b/drivers/mmc/host/sdhci-iproc.c index 871c92c..1110f73 100644 --- a/drivers/mmc/host/sdhci-iproc.c +++ b/drivers/mmc/host/sdhci-iproc.c @@ -247,11 +247,6 @@ err: return ret; } -static int sdhci_iproc_remove(struct platform_device *pdev) -{ - return sdhci_pltfm_unregister(pdev); -} - static struct platform_driver sdhci_iproc_driver = { .driver = { .name = "sdhci-iproc", @@ -259,7 +254,7 @@ static struct platform_driver sdhci_iproc_driver = { .pm = SDHCI_PLTFM_PMOPS, }, .probe = sdhci_iproc_probe, - .remove = sdhci_iproc_remove, + .remove = sdhci_pltfm_unregister, }; module_platform_driver(sdhci_iproc_driver); -- 2.7.4