diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-27 16:23:43 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-27 16:23:43 +0000 |
commit | f2d1a93055cb15d4e82cd5e8d430410c986995cf (patch) | |
tree | 317bfad60ab172b9f99ac52e96264c0d77a2a89f /package/mac80211/patches/607-rt2x00-dont-try-to-destroy-unallocated-workqueue.patch | |
parent | 79d9ad50db72f5bb20425d9908976268637658c3 (diff) |
mac80211: update to wireless-testing 2012-02-23
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30742 3c298f89-4303-0410-b956-a3cf2f4a3e73
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.patch | 12 |
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 f9d3ca1ad..000000000 --- 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. |