diff options
author | Matteo Croce <rootkit85@yahoo.it> | 2007-09-17 00:08:24 +0000 |
---|---|---|
committer | Matteo Croce <rootkit85@yahoo.it> | 2007-09-17 00:08:24 +0000 |
commit | 16d7058facb0a7989eb47fc09ff4afca3f08ab7b (patch) | |
tree | 0164e0a53b816dcf39d7ee728518bce4d0374500 /package/acx-mac80211/patches | |
parent | f25342dd7fd6c5feef043e19239d1c412ebb25ff (diff) | |
download | upstream-16d7058facb0a7989eb47fc09ff4afca3f08ab7b.tar.gz upstream-16d7058facb0a7989eb47fc09ff4afca3f08ab7b.tar.bz2 upstream-16d7058facb0a7989eb47fc09ff4afca3f08ab7b.zip |
disable powersave, vlynq can't handle this
SVN-Revision: 8818
Diffstat (limited to 'package/acx-mac80211/patches')
-rw-r--r-- | package/acx-mac80211/patches/011-no_pm.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/acx-mac80211/patches/011-no_pm.patch b/package/acx-mac80211/patches/011-no_pm.patch new file mode 100644 index 0000000000..09a00b04e5 --- /dev/null +++ b/package/acx-mac80211/patches/011-no_pm.patch @@ -0,0 +1,32 @@ +--- acx-mac80211-20070610/pci.c 2007-06-10 20:23:27.000000000 +0200 ++++ acx-mac80211-20070610.new/pci.c 2007-09-17 01:07:38.000000000 +0200 +@@ -1693,7 +1693,9 @@ + /** done with board specific setup **/ + + /* need to be able to restore PCI state after a suspend */ ++#ifdef CONFIG_PM + pci_save_state(pdev); ++#endif + + + acx_init_task_scheduler(adev); +@@ -1740,7 +1742,9 @@ + pci_disable_device(pdev); + fail_pci_enable_device: + ++#ifdef CONFIG_PM + pci_set_power_state(pdev, PCI_D3hot); ++#endif + fail_register_netdev: + ieee80211_free_hw(ieee); + done: +@@ -1872,7 +1876,9 @@ + ieee80211_free_hw(adev->ieee); + + /* put device into ACPI D3 mode (shutdown) */ ++#ifdef CONFIG_PM + pci_set_power_state(pdev, PCI_D3hot); ++#endif + // kfree(ieee); + end: + FN_EXIT0; |