|
@@ -195,7 +195,7 @@ static const struct ieee80211_rate ath5k_rates[] = {
|
|
|
static int __devinit ath5k_pci_probe(struct pci_dev *pdev,
|
|
|
const struct pci_device_id *id);
|
|
|
static void __devexit ath5k_pci_remove(struct pci_dev *pdev);
|
|
|
-#ifdef CONFIG_PM
|
|
|
+#ifdef CONFIG_PM_SLEEP
|
|
|
static int ath5k_pci_suspend(struct device *dev);
|
|
|
static int ath5k_pci_resume(struct device *dev);
|
|
|
|
|
@@ -203,7 +203,7 @@ static SIMPLE_DEV_PM_OPS(ath5k_pm_ops, ath5k_pci_suspend, ath5k_pci_resume);
|
|
|
#define ATH5K_PM_OPS (&ath5k_pm_ops)
|
|
|
#else
|
|
|
#define ATH5K_PM_OPS NULL
|
|
|
-#endif /* CONFIG_PM */
|
|
|
+#endif /* CONFIG_PM_SLEEP */
|
|
|
|
|
|
static struct pci_driver ath5k_pci_driver = {
|
|
|
.name = KBUILD_MODNAME,
|
|
@@ -708,7 +708,7 @@ ath5k_pci_remove(struct pci_dev *pdev)
|
|
|
ieee80211_free_hw(hw);
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_PM
|
|
|
+#ifdef CONFIG_PM_SLEEP
|
|
|
static int ath5k_pci_suspend(struct device *dev)
|
|
|
{
|
|
|
struct ieee80211_hw *hw = pci_get_drvdata(to_pci_dev(dev));
|
|
@@ -734,7 +734,7 @@ static int ath5k_pci_resume(struct device *dev)
|
|
|
ath5k_led_enable(sc);
|
|
|
return 0;
|
|
|
}
|
|
|
-#endif /* CONFIG_PM */
|
|
|
+#endif /* CONFIG_PM_SLEEP */
|
|
|
|
|
|
|
|
|
/***********************\
|