summaryrefslogtreecommitdiffstats
path: root/package/acx/patches/011-no_pm.patch
diff options
context:
space:
mode:
authormatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-10-03 17:30:27 +0000
committermatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-10-03 17:30:27 +0000
commit9706fcf48726fa6bdc24dbca6034936738383889 (patch)
treea37bea8c7739ea1a6faf05ecdb18f40d97c98953 /package/acx/patches/011-no_pm.patch
parent3303115e2b6c9409810121932d127292e66bad19 (diff)
upgrade acx and acx-mac80211, removed two patches now unneeded
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9112 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx/patches/011-no_pm.patch')
-rw-r--r--package/acx/patches/011-no_pm.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/package/acx/patches/011-no_pm.patch b/package/acx/patches/011-no_pm.patch
deleted file mode 100644
index d1d0feb2f..000000000
--- a/package/acx/patches/011-no_pm.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -ruN acx-20070610-old/pci.c acx-20070610-new/pci.c
---- acx-20070610-old/pci.c 2007-09-16 17:57:55.000000000 +0200
-+++ acx-20070610-new/pci.c 2007-09-16 17:59:25.000000000 +0200
-@@ -1630,7 +1630,9 @@
- log(L_IRQ|L_INIT, "using IRQ %d\n", pdev->irq);
-
- /* need to be able to restore PCI state after a suspend */
-+#ifdef CONFIG_PM
- pci_save_state(pdev);
-+#endif
- pci_set_drvdata(pdev, ndev);
-
- /* ok, pci setup is finished, now start initializing the card */
-@@ -1728,7 +1730,9 @@
- pci_disable_device(pdev);
- fail_pci_enable_device:
-
-+#ifdef CONFIG_PM
- pci_set_power_state(pdev, PCI_D3hot);
-+#endif
-
- done:
- FN_EXIT1(result);
-@@ -1848,7 +1852,9 @@
- free_netdev(ndev);
-
- /* put device into ACPI D3 mode (shutdown) */
-+#ifdef CONFIG_PM
- pci_set_power_state(pdev, PCI_D3hot);
-+#endif
-
- end:
- FN_EXIT0;