ASoC: intel: restore IRQs on error

This should be spin_unlock_irqrestore() instead of spin_unlock()

Fixes: 2298124358 ('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>
This commit is contained in:
Dan Carpenter 2014-02-25 11:32:50 +03:00 committed by Mark Brown
parent 951e9bb1fa
commit f9da9e434d

View file

@ -527,7 +527,7 @@ static int ipc_tx_message(struct sst_hsw *hsw, u32 header, void *tx_data,
msg = msg_get_empty(hsw);
if (msg == NULL) {
spin_unlock(&hsw->dsp->spinlock);
spin_unlock_irqrestore(&hsw->dsp->spinlock, flags);
return -EBUSY;
}