diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-07-20 01:54:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-07-20 01:54:01 +0000 |
commit | 41872e876522f11895124c072d9f449c34242773 (patch) | |
tree | 849c0f5368b73df1ddb966103f656a942fcaff4b /package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch | |
parent | f813a693fd5e07c60c042a0b11ae8e15144fc960 (diff) | |
download | upstream-41872e876522f11895124c072d9f449c34242773.tar.gz upstream-41872e876522f11895124c072d9f449c34242773.tar.bz2 upstream-41872e876522f11895124c072d9f449c34242773.zip |
mac80211: update to wireless-testing 2010-07-16
SVN-Revision: 22301
Diffstat (limited to 'package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch')
-rw-r--r-- | package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch b/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch deleted file mode 100644 index 5b1ae415ad..0000000000 --- a/package/mac80211/patches/601-rt2x00-fix-hang-on-ifdown.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 27ed5ec6924c17b76d65b697a162bafee7bd8e4e Mon Sep 17 00:00:00 2001 -From: Helmut Schaa <helmut.schaa@googlemail.com> -Date: Mon, 21 Jun 2010 10:03:05 +0200 -Subject: [PATCH] rt2x00: fix rt2800pci hang on ifdown - -rt2800pci hangs the system on rt305x SoC devices on ifdown. Work around -this issue by disabling TX DMA prior to restting the TX queue indices. - -This patch is not suitable for upstream inclusion but is just meant as -a workaround until a proper solution is implemented. - -Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> ---- - drivers/net/wireless/rt2x00/rt2800pci.c | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) - ---- a/drivers/net/wireless/rt2x00/rt2800pci.c -+++ b/drivers/net/wireless/rt2x00/rt2800pci.c -@@ -749,6 +749,10 @@ static void rt2800pci_kill_tx_queue(stru - rt2800_register_write(rt2x00dev, BCN_TIME_CFG, 0); - return; - } -+ -+ rt2800_register_read(rt2x00dev, WPDMA_GLO_CFG, ®); -+ rt2x00_set_field32(®, WPDMA_GLO_CFG_ENABLE_TX_DMA, 0); -+ rt2800_register_write(rt2x00dev, WPDMA_GLO_CFG, reg); - - rt2800_register_read(rt2x00dev, WPDMA_RST_IDX, ®); - rt2x00_set_field32(®, WPDMA_RST_IDX_DTX_IDX0, (qid == QID_AC_BE)); |