aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-03-26 02:53:04 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2013-08-05 14:00:12 -0400
commitb87c92c1ad6c29c4068a6d64483903a89ec2bce1 (patch)
tree3eafab5763fc117c11fee595259cd96cbedc3528
parentd085eea16c05e5fecf258fc254059e9bc1e6db91 (diff)
mtd: r852: add CONFIG_PM_SLEEP to suspend/resume functions
Add CONFIG_PM_SLEEP to suspend/resume functions to fix the following build warning when CONFIG_PM_SLEEP is not selected. This is because sleep PM callbacks defined by SIMPLE_DEV_PM_OPS are only used when the CONFIG_PM_SLEEP is enabled. Also, unnecessary NULL defines are removed. drivers/mtd/nand/r852.c:1006:12: warning: 'r852_suspend' defined but not used [-Wunused-function] drivers/mtd/nand/r852.c:1027:12: warning: 'r852_resume' defined but not used [-Wunused-function] Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r--drivers/mtd/nand/r852.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/mtd/nand/r852.c b/drivers/mtd/nand/r852.c
index 4495f8551fa0..ef72884825f3 100644
--- a/drivers/mtd/nand/r852.c
+++ b/drivers/mtd/nand/r852.c
@@ -1002,7 +1002,7 @@ void r852_shutdown(struct pci_dev *pci_dev)
1002 pci_disable_device(pci_dev); 1002 pci_disable_device(pci_dev);
1003} 1003}
1004 1004
1005#ifdef CONFIG_PM 1005#ifdef CONFIG_PM_SLEEP
1006static int r852_suspend(struct device *device) 1006static int r852_suspend(struct device *device)
1007{ 1007{
1008 struct r852_device *dev = pci_get_drvdata(to_pci_dev(device)); 1008 struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));
@@ -1055,9 +1055,6 @@ static int r852_resume(struct device *device)
1055 r852_update_card_detect(dev); 1055 r852_update_card_detect(dev);
1056 return 0; 1056 return 0;
1057} 1057}
1058#else
1059#define r852_suspend NULL
1060#define r852_resume NULL
1061#endif 1058#endif
1062 1059
1063static const struct pci_device_id r852_pci_id_tbl[] = { 1060static const struct pci_device_id r852_pci_id_tbl[] = {