Commit 207459a2 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: sparc: Use GFP_KERNEL for non-atomic allocation

dbri driver allocates a resource with GFP_ATOMIC unnecessarily in its
probe function.  Replace it with the standard GFP_KERNEL for avoiding
the bogus allocation failures.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 6455abb4
...@@ -2542,7 +2542,7 @@ static int snd_dbri_create(struct snd_card *card, ...@@ -2542,7 +2542,7 @@ static int snd_dbri_create(struct snd_card *card,
dbri->irq = irq; dbri->irq = irq;
dbri->dma = dma_zalloc_coherent(&op->dev, sizeof(struct dbri_dma), dbri->dma = dma_zalloc_coherent(&op->dev, sizeof(struct dbri_dma),
&dbri->dma_dvma, GFP_ATOMIC); &dbri->dma_dvma, GFP_KERNEL);
if (!dbri->dma) if (!dbri->dma)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment