diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-11-03 16:18:29 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-11-03 16:18:29 +0000 |
commit | f7f6bff6a13e640c4296528e6a07304d1e7816df (patch) | |
tree | 3c0c5497e2a04987f5e0792e67227f8bf56d141d /package/madwifi | |
parent | 76cfba7b8c6b079ff6c658f6bd41a8b3b4f45bf0 (diff) | |
download | master-187ad058-f7f6bff6a13e640c4296528e6a07304d1e7816df.tar.gz master-187ad058-f7f6bff6a13e640c4296528e6a07304d1e7816df.tar.bz2 master-187ad058-f7f6bff6a13e640c4296528e6a07304d1e7816df.zip |
package/madwifi: Use sema_init() instead of init_MUTEX() (based on: http://madwifi-project.org/changeset/4118)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23829 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi')
-rw-r--r-- | package/madwifi/473-mutex_fix.patch | 9 |
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)
|