diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-02-25 03:32:50 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-25 18:45:43 -0500 |
commit | f9da9e434d9dad684aec159a74b9c8436d4faf5a (patch) | |
tree | 37d106316b31bb39dc7871888203a124a2c508d9 | |
parent | 951e9bb1fa589177183af1696ecfd4e4d8d37cbf (diff) |
ASoC: intel: restore IRQs on error
This should be spin_unlock_irqrestore() instead of spin_unlock()
Fixes: 22981243589c ('ASoC: Intel: Add Haswell/Broadwell IPC')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/intel/sst-haswell-ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/sst-haswell-ipc.c b/sound/soc/intel/sst-haswell-ipc.c index 668d486520ae..552aebf2c8f5 100644 --- a/sound/soc/intel/sst-haswell-ipc.c +++ b/sound/soc/intel/sst-haswell-ipc.c | |||
@@ -527,7 +527,7 @@ static int ipc_tx_message(struct sst_hsw *hsw, u32 header, void *tx_data, | |||
527 | 527 | ||
528 | msg = msg_get_empty(hsw); | 528 | msg = msg_get_empty(hsw); |
529 | if (msg == NULL) { | 529 | if (msg == NULL) { |
530 | spin_unlock(&hsw->dsp->spinlock); | 530 | spin_unlock_irqrestore(&hsw->dsp->spinlock, flags); |
531 | return -EBUSY; | 531 | return -EBUSY; |
532 | } | 532 | } |
533 | 533 | ||