projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
348487c
)
mmc: sdhci-acpi: Remove redundant runtime PM idle callback
author
Ulf Hansson
<ulf.hansson@linaro.org>
Fri, 2 Jan 2015 13:47:00 +0000
(14:47 +0100)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Mon, 19 Jan 2015 08:56:25 +0000
(09:56 +0100)
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-acpi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mmc/host/sdhci-acpi.c
b/drivers/mmc/host/sdhci-acpi.c
index 970314e0aac8f1f05e5b9ff199e28723b9d85a19..637e95d196943038b6550394d1a4f80d2d71e31f 100644
(file)
--- a/
drivers/mmc/host/sdhci-acpi.c
+++ b/
drivers/mmc/host/sdhci-acpi.c
@@
-448,18
+448,13
@@
static int sdhci_acpi_runtime_resume(struct device *dev)
return sdhci_runtime_resume_host(c->host);
}
-static int sdhci_acpi_runtime_idle(struct device *dev)
-{
- return 0;
-}
-
#endif
static const struct dev_pm_ops sdhci_acpi_pm_ops = {
.suspend = sdhci_acpi_suspend,
.resume = sdhci_acpi_resume,
SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
- sdhci_acpi_runtime_resume,
sdhci_acpi_runtime_idle
)
+ sdhci_acpi_runtime_resume,
NULL
)
};
static struct platform_driver sdhci_acpi_driver = {