mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:11:53 +02:00
disable powersave, vlynq can't handle this
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8818 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
00f66fc998
commit
2d5866f9d0
32
package/acx-mac80211/patches/011-no_pm.patch
Normal file
32
package/acx-mac80211/patches/011-no_pm.patch
Normal file
@ -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;
|
33
package/acx/patches/011-no_pm.patch
Normal file
33
package/acx/patches/011-no_pm.patch
Normal file
@ -0,0 +1,33 @@
|
||||
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;
|
Loading…
Reference in New Issue
Block a user