Skip to content
Snippets Groups Projects
Commit 32d3a392 authored by Michael Buesch's avatar Michael Buesch Committed by John W. Linville
Browse files

p54spi: Add missing spin_lock_init


The tx_lock is not initialized properly. Add spin_lock_init().

Signed-off-by: default avatarMichael Buesch <m@bues.ch>
Cc: <stable@vger.kernel.org>
Acked-by: default avatarChristian Lamparter <chunkeey@googlemail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 68fa64ef
No related branches found
No related tags found
No related merge requests found
......@@ -656,6 +656,7 @@ static int __devinit p54spi_probe(struct spi_device *spi)
init_completion(&priv->fw_comp);
INIT_LIST_HEAD(&priv->tx_pending);
mutex_init(&priv->mutex);
spin_lock_init(&priv->tx_lock);
SET_IEEE80211_DEV(hw, &spi->dev);
priv->common.open = p54spi_op_start;
priv->common.stop = p54spi_op_stop;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment