Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 166137
b: refs/heads/master
c: b93011e
h: refs/heads/master
i:
  166135: 87f5597
v: v3
  • Loading branch information
Jassi authored and Ben Dooks committed Sep 15, 2009
1 parent 97a5359 commit 0642407
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3ea61e49223c499c705b80ea385cb4df9c08da21
refs/heads/master: b93011e72c1476b08ff62977ecf648080ba38c1a
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-s3c64xx/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,13 +345,13 @@ int s3c2410_dma_enqueue(unsigned int channel, void *id,
if (!chan)
return -EINVAL;

buff = kzalloc(sizeof(struct s3c64xx_dma_buff), GFP_KERNEL);
buff = kzalloc(sizeof(struct s3c64xx_dma_buff), GFP_ATOMIC);
if (!buff) {
printk(KERN_ERR "%s: no memory for buffer\n", __func__);
return -ENOMEM;
}

lli = dma_pool_alloc(dma_pool, GFP_KERNEL, &buff->lli_dma);
lli = dma_pool_alloc(dma_pool, GFP_ATOMIC, &buff->lli_dma);
if (!lli) {
printk(KERN_ERR "%s: no memory for lli\n", __func__);
ret = -ENOMEM;
Expand Down

0 comments on commit 0642407

Please sign in to comment.