projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d774b7
)
ath9k: stop btcoex on device suspend
author
Rajkumar Manoharan
<
[email protected]
>
Thu, 9 Aug 2012 07:07:26 +0000
(12:37 +0530)
committer
John W. Linville
<
[email protected]
>
Fri, 10 Aug 2012 18:51:29 +0000
(14:51 -0400)
During suspend, the device will be moved to FULLSLEEP state.
As btcoex is never been stopped, the btcoex timer is running
and tries to access hw on fullsleep state. Fix that.
Cc:
[email protected]
Signed-off-by: Rajkumar Manoharan <
[email protected]
>
Signed-off-by: John W. Linville <
[email protected]
>
drivers/net/wireless/ath/ath9k/pci.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath9k/pci.c
b/drivers/net/wireless/ath/ath9k/pci.c
index d455de9162ec672cdb2f1174bb27ca742a16bf74..a978984d78a53e93b5148ed54271deedf7b1d25c 100644
(file)
--- a/
drivers/net/wireless/ath/ath9k/pci.c
+++ b/
drivers/net/wireless/ath/ath9k/pci.c
@@
-321,6
+321,7
@@
static int ath_pci_suspend(struct device *device)
* Otherwise the chip never moved to full sleep,
* when no interface is up.
*/
+ ath9k_stop_btcoex(sc);
ath9k_hw_disable(sc->sc_ah);
ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_FULL_SLEEP);