aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi/patches/473-mutex_fix.patch
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
commit42eee22a9b9b16405b0c521063662927e8e5d7c0 (patch)
tree92c9c019c84647aa1f45f5645f2014baa6e183e1 /package/madwifi/patches/473-mutex_fix.patch
parent20bf929ad8e6ee423d1e29b04881d0aedf31dc11 (diff)
downloadupstream-42eee22a9b9b16405b0c521063662927e8e5d7c0.tar.gz
upstream-42eee22a9b9b16405b0c521063662927e8e5d7c0.tar.bz2
upstream-42eee22a9b9b16405b0c521063662927e8e5d7c0.zip
package/madwifi: fix r23829 commit
SVN-Revision: 23830
Diffstat (limited to 'package/madwifi/patches/473-mutex_fix.patch')
-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..8ba985fb76
--- /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)