[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1337414319-27719-1-git-send-email-santosh.shilimkar@ti.com>
Date:	Sat, 19 May 2012 13:28:39 +0530
From:	Santosh Shilimkar <santosh.shilimkar@...com>
To:	<linux-mmc@...r.kernel.org>
CC:	<linux-kernel@...r.kernel.org>,
	Santosh Shilimkar <santosh.shilimkar@...com>,
	Chris Ball <cjb@...top.org>
Subject: [PATCH] mmc: core: Fix build warning with !CONFIG_SUSPEND
With !CONFIG_SUSPEND, mmc core layer throws below build warnings.
drivers/mmc/core/bus.c:125: warning: 'mmc_bus_suspend' defined but not used
drivers/mmc/core/bus.c:136: warning: 'mmc_bus_resume' defined but not used
drivers/mmc/core/sdio_bus.c:197: warning: 'pm_no_operation' defined but not used
Fix is by wrapping suspend hooks under CONFIG_SUSPEND
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@...com>
Cc: Chris Ball <cjb@...top.org>
---
 drivers/mmc/core/bus.c      |    2 ++
 drivers/mmc/core/sdio_bus.c |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/mmc/core/bus.c b/drivers/mmc/core/bus.c
index c60cee9..ca8925d 100644
--- a/drivers/mmc/core/bus.c
+++ b/drivers/mmc/core/bus.c
@@ -122,6 +122,7 @@ static int mmc_bus_remove(struct device *dev)
 	return 0;
 }
 
+#ifdef CONFIG_SUSPEND
 static int mmc_bus_suspend(struct device *dev)
 {
 	struct mmc_driver *drv = to_mmc_driver(dev->driver);
@@ -143,6 +144,7 @@ static int mmc_bus_resume(struct device *dev)
 		ret = drv->resume(card);
 	return ret;
 }
+#endif
 
 #ifdef CONFIG_PM_RUNTIME
 
diff --git a/drivers/mmc/core/sdio_bus.c b/drivers/mmc/core/sdio_bus.c
index 236842e..87d1b7e 100644
--- a/drivers/mmc/core/sdio_bus.c
+++ b/drivers/mmc/core/sdio_bus.c
@@ -192,7 +192,7 @@ static int sdio_bus_remove(struct device *dev)
 	return ret;
 }
 
-#ifdef CONFIG_PM
+#ifdef CONFIG_SUSPEND
 
 static int pm_no_operation(struct device *dev)
 {
-- 
1.7.5.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
Powered by blists - more mailing lists
 
