diff options
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/cs46xx/dsp_spos_scb_lib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/pci/cs46xx/dsp_spos_scb_lib.c b/sound/pci/cs46xx/dsp_spos_scb_lib.c index 3844d18af19c..232b337852ff 100644 --- a/sound/pci/cs46xx/dsp_spos_scb_lib.c +++ b/sound/pci/cs46xx/dsp_spos_scb_lib.c | |||
@@ -180,6 +180,7 @@ static void _dsp_clear_sample_buffer (struct snd_cs46xx *chip, u32 sample_buffer | |||
180 | void cs46xx_dsp_remove_scb (struct snd_cs46xx *chip, struct dsp_scb_descriptor * scb) | 180 | void cs46xx_dsp_remove_scb (struct snd_cs46xx *chip, struct dsp_scb_descriptor * scb) |
181 | { | 181 | { |
182 | struct dsp_spos_instance * ins = chip->dsp_spos_instance; | 182 | struct dsp_spos_instance * ins = chip->dsp_spos_instance; |
183 | unsigned long flags; | ||
183 | 184 | ||
184 | /* check integrety */ | 185 | /* check integrety */ |
185 | snd_assert ( (scb->index >= 0 && | 186 | snd_assert ( (scb->index >= 0 && |
@@ -194,9 +195,9 @@ void cs46xx_dsp_remove_scb (struct snd_cs46xx *chip, struct dsp_scb_descriptor * | |||
194 | goto _end); | 195 | goto _end); |
195 | #endif | 196 | #endif |
196 | 197 | ||
197 | spin_lock(&scb->lock); | 198 | spin_lock_irqsave(&scb->lock, flags); |
198 | _dsp_unlink_scb (chip,scb); | 199 | _dsp_unlink_scb (chip,scb); |
199 | spin_unlock(&scb->lock); | 200 | spin_unlock_irqrestore(&scb->lock, flags); |
200 | 201 | ||
201 | cs46xx_dsp_proc_free_scb_desc(scb); | 202 | cs46xx_dsp_proc_free_scb_desc(scb); |
202 | snd_assert (scb->scb_symbol != NULL, return ); | 203 | snd_assert (scb->scb_symbol != NULL, return ); |