mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
p54spi: Lock fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29200 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
17
package/mac80211/patches/851-p54spi-mutex-fix.patch
Normal file
17
package/mac80211/patches/851-p54spi-mutex-fix.patch
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user