Commit 65d13516 authored by Wonil Choi's avatar Wonil Choi Committed by Chris Ball

mmc: sdhci-s3c: Fix return value in sdhci_s3c_suspend/resume()

Signed-off-by: default avatarWonil Choi <wonil22.choi@samsung.com>
Signed-off-by: default avatarMinho Ban <mhban@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 58d1246d
...@@ -612,16 +612,14 @@ static int sdhci_s3c_suspend(struct platform_device *dev, pm_message_t pm) ...@@ -612,16 +612,14 @@ static int sdhci_s3c_suspend(struct platform_device *dev, pm_message_t pm)
{ {
struct sdhci_host *host = platform_get_drvdata(dev); struct sdhci_host *host = platform_get_drvdata(dev);
sdhci_suspend_host(host, pm); return sdhci_suspend_host(host, pm);
return 0;
} }
static int sdhci_s3c_resume(struct platform_device *dev) static int sdhci_s3c_resume(struct platform_device *dev)
{ {
struct sdhci_host *host = platform_get_drvdata(dev); struct sdhci_host *host = platform_get_drvdata(dev);
sdhci_resume_host(host); return sdhci_resume_host(host);
return 0;
} }
#else #else
......
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