diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-12 20:47:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-12 20:47:15 -0500 |
commit | 37bed90094fdb1eea6e4afec6a200d4e60143e55 (patch) | |
tree | 4590075dbc03c13dd532a974f040f18a07b1d130 /drivers/net/wireless/iwlwifi/iwl3945-base.c | |
parent | 071a0bc2ceace31266836801510879407a3701fa (diff) | |
parent | 1d7b33f77b2d8b0b1ee767e6f8f05cbd9d72cb7c (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (32 commits)
wimax: fix oops in wimax_dev_get_by_genl_info() when looking up non-wimax iface
net: 4 bytes kernel memory disclosure in SO_BSDCOMPAT gsopt try #2
netxen: fix compile waring "label ‘set_32_bit_mask’ defined but not used" on IA64 platform
bnx2: Update version to 1.9.2 and copyright.
bnx2: Fix jumbo frames error handling.
bnx2: Update 5709 firmware.
bnx2: Update 5706/5708 firmware.
3c505: do not set pcb->data.raw beyond its size
Documentation/connector/cn_test.c: don't use gfp_any()
net: don't use in_atomic() in gfp_any()
IRDA: cnt is off by 1
netxen: remove pcie workaround
sun3: print when lance_open() fails
qlge: bugfix: Add missing rx buf clean index on early exit.
qlge: bugfix: Fix RX scaling values.
qlge: bugfix: Fix TSO breakage.
qlge: bugfix: Add missing dev_kfree_skb_any() call.
qlge: bugfix: Add missing put_page() call.
qlge: bugfix: Fix fatal error recovery hang.
qlge: bugfix: Use netif_receive_skb() and vlan_hwaccel_receive_skb().
...
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl3945-base.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 5b44d322b99f..93be74a1f139 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -8143,7 +8143,19 @@ static int iwl3945_pci_suspend(struct pci_dev *pdev, pm_message_t state) | |||
8143 | priv->is_open = 1; | 8143 | priv->is_open = 1; |
8144 | } | 8144 | } |
8145 | 8145 | ||
8146 | pci_save_state(pdev); | 8146 | /* pci driver assumes state will be saved in this function. |
8147 | * pci state is saved and device disabled when interface is | ||
8148 | * stopped, so at this time pci device will always be disabled - | ||
8149 | * whether interface was started or not. saving pci state now will | ||
8150 | * cause saved state be that of a disabled device, which will cause | ||
8151 | * problems during resume in that we will end up with a disabled device. | ||
8152 | * | ||
8153 | * indicate that the current saved state (from when interface was | ||
8154 | * stopped) is valid. if interface was never up at time of suspend | ||
8155 | * then the saved state will still be valid as it was saved during | ||
8156 | * .probe. */ | ||
8157 | pdev->state_saved = true; | ||
8158 | |||
8147 | pci_set_power_state(pdev, PCI_D3hot); | 8159 | pci_set_power_state(pdev, PCI_D3hot); |
8148 | 8160 | ||
8149 | return 0; | 8161 | return 0; |
@@ -8154,7 +8166,6 @@ static int iwl3945_pci_resume(struct pci_dev *pdev) | |||
8154 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); | 8166 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); |
8155 | 8167 | ||
8156 | pci_set_power_state(pdev, PCI_D0); | 8168 | pci_set_power_state(pdev, PCI_D0); |
8157 | pci_restore_state(pdev); | ||
8158 | 8169 | ||
8159 | if (priv->is_open) | 8170 | if (priv->is_open) |
8160 | iwl3945_mac_start(priv->hw); | 8171 | iwl3945_mac_start(priv->hw); |