From: Ulf Hansson Date: Wed, 10 Dec 2014 15:49:23 +0000 (+0100) Subject: mmc: sdhci-pci: Remove redundant runtime PM idle callback X-Git-Tag: v4.0-rc1~124^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=106276bbc98bd0bac554edce0869d356596ff9ae;p=platform%2Fkernel%2Flinux-exynos.git mmc: sdhci-pci: Remove redundant runtime PM idle callback Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c index 4f38554..29eaff7 100644 --- a/drivers/mmc/host/sdhci-pci.c +++ b/drivers/mmc/host/sdhci-pci.c @@ -1367,11 +1367,6 @@ static int sdhci_pci_runtime_resume(struct device *dev) return 0; } -static int sdhci_pci_runtime_idle(struct device *dev) -{ - return 0; -} - #else /* CONFIG_PM */ #define sdhci_pci_suspend NULL @@ -1383,7 +1378,7 @@ static const struct dev_pm_ops sdhci_pci_pm_ops = { .suspend = sdhci_pci_suspend, .resume = sdhci_pci_resume, SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend, - sdhci_pci_runtime_resume, sdhci_pci_runtime_idle) + sdhci_pci_runtime_resume, NULL) }; /*****************************************************************************\