aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi/patches
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-11-03 16:55:51 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-11-03 16:55:51 +0000
commit47fcad90bc72743ca15c625a7d2c7c9aa9462492 (patch)
tree439ad8914f4864f6da95d55cf4ca84ac9887201c /package/madwifi/patches
parentf7f6bff6a13e640c4296528e6a07304d1e7816df (diff)
downloadupstream-47fcad90bc72743ca15c625a7d2c7c9aa9462492.tar.gz
upstream-47fcad90bc72743ca15c625a7d2c7c9aa9462492.tar.bz2
upstream-47fcad90bc72743ca15c625a7d2c7c9aa9462492.zip
package/madwifi: fix r23829 commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23830 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches')
-rw-r--r--package/madwifi/patches/473-mutex_fix.patch9
1 files changed, 9 insertions, 0 deletions
diff --git a/package/madwifi/patches/473-mutex_fix.patch b/package/madwifi/patches/473-mutex_fix.patch
new file mode 100644
index 0000000000..1b18e89a5e
--- /dev/null
+++ b/package/madwifi/patches/473-mutex_fix.patch
@@ -0,0 +1,9 @@
+--- a/ath/if_athvar.h
++++ b/ath/if_athvar.h
+@@ -991,5 +991,5 @@
+ #endif
+ /* Protects the device from concurrent accesses */
+-#define ATH_LOCK_INIT(_sc) init_MUTEX(&(_sc)->sc_lock)
++#define ATH_LOCK_INIT(_sc) sema_init(&(_sc)->sc_lock, 1)
+ #define ATH_LOCK_DESTROY(_sc)
+ #define ATH_LOCK(_sc) down(&(_sc)->sc_lock)