aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi
diff options
context:
space:
mode:
Diffstat (limited to 'package/madwifi')
-rw-r--r--package/madwifi/473-mutex_fix.patch9
1 files changed, 9 insertions, 0 deletions
diff --git a/package/madwifi/473-mutex_fix.patch b/package/madwifi/473-mutex_fix.patch
new file mode 100644
index 0000000000..1b18e89a5e
--- /dev/null
+++ b/package/madwifi/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)