|
@@ -6702,17 +6702,9 @@ static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
|
|
|
/* Remove the PRESENT state of the device */
|
|
|
netif_device_detach(dev);
|
|
|
|
|
|
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)
|
|
|
- pci_save_state(pci_dev, priv->pm_state);
|
|
|
-#else
|
|
|
pci_save_state(pci_dev);
|
|
|
-#endif
|
|
|
pci_disable_device (pci_dev);
|
|
|
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11)
|
|
|
- pci_set_power_state(pci_dev, state);
|
|
|
-#else
|
|
|
pci_set_power_state(pci_dev, PCI_D3hot);
|
|
|
-#endif
|
|
|
|
|
|
up(&priv->action_sem);
|
|
|
|
|
@@ -6733,17 +6725,9 @@ static int ipw2100_resume(struct pci_dev *pci_dev)
|
|
|
IPW_DEBUG_INFO("%s: Coming out of suspend...\n",
|
|
|
dev->name);
|
|
|
|
|
|
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11)
|
|
|
- pci_set_power_state(pci_dev, 0);
|
|
|
-#else
|
|
|
pci_set_power_state(pci_dev, PCI_D0);
|
|
|
-#endif
|
|
|
pci_enable_device(pci_dev);
|
|
|
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)
|
|
|
- pci_restore_state(pci_dev, priv->pm_state);
|
|
|
-#else
|
|
|
pci_restore_state(pci_dev);
|
|
|
-#endif
|
|
|
|
|
|
/*
|
|
|
* Suspend/Resume resets the PCI configuration space, so we have to
|