mmc: sdhci-s3c: Fix return value in sdhci_s3c_suspend/resume()
authorWonil Choi <wonil22.choi@samsung.com>
Wed, 29 Jun 2011 02:38:38 +0000 (11:38 +0900)
committerChris Ball <cjb@laptop.org>
Wed, 20 Jul 2011 21:21:04 +0000 (17:21 -0400)
Signed-off-by: Wonil Choi <wonil22.choi@samsung.com>
Signed-off-by: Minho Ban <mhban@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/sdhci-s3c.c

index 69e3ee321eb59ad593290706e091d359e5912db6..460ffaf0f6d7ebaa86f64a205292504e97965d1d 100644 (file)
@@ -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);
 
-       sdhci_suspend_host(host, pm);
-       return 0;
+       return sdhci_suspend_host(host, pm);
 }
 
 static int sdhci_s3c_resume(struct platform_device *dev)
 {
        struct sdhci_host *host = platform_get_drvdata(dev);
 
-       sdhci_resume_host(host);
-       return 0;
+       return sdhci_resume_host(host);
 }
 
 #else