mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
package/madwifi: Use sema_init() instead of init_MUTEX() (based on: http://madwifi-project.org/changeset/4118)
SVN-Revision: 23829
This commit is contained in:
parent
a2d17ea8cf
commit
20bf929ad8
9
package/madwifi/473-mutex_fix.patch
Normal file
9
package/madwifi/473-mutex_fix.patch
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user