diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-11-03 16:55:51 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-11-03 16:55:51 +0000 |
commit | 42eee22a9b9b16405b0c521063662927e8e5d7c0 (patch) | |
tree | 92c9c019c84647aa1f45f5645f2014baa6e183e1 /package/madwifi/patches | |
parent | 20bf929ad8e6ee423d1e29b04881d0aedf31dc11 (diff) | |
download | mtk-20170518-42eee22a9b9b16405b0c521063662927e8e5d7c0.zip mtk-20170518-42eee22a9b9b16405b0c521063662927e8e5d7c0.tar.gz mtk-20170518-42eee22a9b9b16405b0c521063662927e8e5d7c0.tar.bz2 |
package/madwifi: fix r23829 commit
SVN-Revision: 23830
Diffstat (limited to 'package/madwifi/patches')
-rw-r--r-- | package/madwifi/patches/473-mutex_fix.patch | 9 |
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 0000000..8ba985f --- /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) |