aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/851-p54spi-mutex-fix.patch
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2011-11-16 22:26:12 +0000
committerMichael Büsch <mb@bu3sch.de>2011-11-16 22:26:12 +0000
commit354c5772ba9095e38595d721fdae4800b9b720dc (patch)
treec03f7f5041927155ca0d5b1f48294e3a5c3dc89d /package/mac80211/patches/851-p54spi-mutex-fix.patch
parent0da89768b6548e04f57e40fbc9fd26094fb90013 (diff)
downloadmaster-187ad058-354c5772ba9095e38595d721fdae4800b9b720dc.tar.gz
master-187ad058-354c5772ba9095e38595d721fdae4800b9b720dc.tar.bz2
master-187ad058-354c5772ba9095e38595d721fdae4800b9b720dc.zip
p54spi: Lock fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29200 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/851-p54spi-mutex-fix.patch')
-rw-r--r--package/mac80211/patches/851-p54spi-mutex-fix.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/mac80211/patches/851-p54spi-mutex-fix.patch b/package/mac80211/patches/851-p54spi-mutex-fix.patch
new file mode 100644
index 0000000000..27019de654
--- /dev/null
+++ b/package/mac80211/patches/851-p54spi-mutex-fix.patch
@@ -0,0 +1,17 @@
+Index: compat-wireless-2011-11-04/drivers/net/wireless/p54/p54spi.c
+===================================================================
+--- compat-wireless-2011-11-04.orig/drivers/net/wireless/p54/p54spi.c 2011-11-16 22:12:03.648829886 +0100
++++ compat-wireless-2011-11-04/drivers/net/wireless/p54/p54spi.c 2011-11-16 22:15:28.931976935 +0100
+@@ -581,11 +581,7 @@ static void p54spi_op_stop(struct ieee80
+ struct p54s_priv *priv = dev->priv;
+ unsigned long flags;
+
+- if (mutex_lock_interruptible(&priv->mutex)) {
+- /* FIXME: how to handle this error? */
+- return;
+- }
+-
++ mutex_lock(&priv->mutex);
+ WARN_ON(priv->fw_state != FW_STATE_READY);
+
+ cancel_work_sync(&priv->work);