Browse Source

mtd/nand/r852: fix build for CONFIG_PM=n

Fix r852 build for the case of CONFIG_PM=n.

drivers/mtd/nand/r852.c:1039: error: implicit declaration of function 'pci_prepare_to_sleep'
drivers/mtd/nand/r852.c:1048: error: implicit declaration of function 'pci_back_from_sleep'

This patch leaves r852_pm_ops untouched.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Maxim Levitsky <maximlevitsky@gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Randy Dunlap 15 years ago
parent
commit
b2aaf7a2b4
1 changed files with 5 additions and 0 deletions
  1. 5 0
      drivers/mtd/nand/r852.c

+ 5 - 0
drivers/mtd/nand/r852.c

@@ -1019,6 +1019,7 @@ void r852_shutdown(struct pci_dev *pci_dev)
 	pci_disable_device(pci_dev);
 	pci_disable_device(pci_dev);
 }
 }
 
 
+#ifdef CONFIG_PM
 int r852_suspend(struct device *device)
 int r852_suspend(struct device *device)
 {
 {
 	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));
 	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));
@@ -1093,6 +1094,10 @@ int r852_resume(struct device *device)
 	r852_update_card_detect(dev);
 	r852_update_card_detect(dev);
 	return 0;
 	return 0;
 }
 }
+#else
+#define r852_suspend	NULL
+#define r852_resume	NULL
+#endif
 
 
 static const struct pci_device_id r852_pci_id_tbl[] = {
 static const struct pci_device_id r852_pci_id_tbl[] = {