aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-02-27 16:23:43 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-02-27 16:23:43 +0000
commite3ec30cad1a857b0aa20122187eb0788c8cfe50c (patch)
tree16c52de3fb93e328610483a43b8aa40f5c916383 /package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch
parent8ad6213f599436363534327a005eaac024bc08db (diff)
downloadupstream-e3ec30cad1a857b0aa20122187eb0788c8cfe50c.tar.gz
upstream-e3ec30cad1a857b0aa20122187eb0788c8cfe50c.tar.bz2
upstream-e3ec30cad1a857b0aa20122187eb0788c8cfe50c.zip
mac80211: update to wireless-testing 2012-02-23
SVN-Revision: 30742
Diffstat (limited to 'package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch')
-rw-r--r--package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch b/package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch
deleted file mode 100644
index f9d3ca1ad1..0000000000
--- a/package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/drivers/net/wireless/rt2x00/rt2x00dev.c
-+++ b/drivers/net/wireless/rt2x00/rt2x00dev.c
-@@ -1224,7 +1224,8 @@ void rt2x00lib_remove_dev(struct rt2x00_
- cancel_work_sync(&rt2x00dev->rxdone_work);
- cancel_work_sync(&rt2x00dev->txdone_work);
- }
-- destroy_workqueue(rt2x00dev->workqueue);
-+ if (rt2x00dev->workqueue)
-+ destroy_workqueue(rt2x00dev->workqueue);
-
- /*
- * Free the tx status fifo.