From: acoul Date: Wed, 3 Nov 2010 16:18:29 +0000 (+0000) Subject: package/madwifi: Use sema_init() instead of init_MUTEX() (based on: http://madwifi... X-Git-Tag: fast2504n-3.10.28-merged~10648 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=6c69756359e531c8cf034d0a7fa0b261bf974bac;p=openwrt.git 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 --- 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)