Commit 55c5d74b3ac3a6b8bdde4e5fab4015eccd557d52

Authored by Al Viro
Committed by Linus Torvalds
1 parent 06a544971f

[PATCH] gfp_t: dma-mapping (alpha)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

arch/alpha/kernel/pci-noop.c
... ... @@ -154,7 +154,7 @@
154 154  
155 155 void *
156 156 dma_alloc_coherent(struct device *dev, size_t size,
157   - dma_addr_t *dma_handle, int gfp)
  157 + dma_addr_t *dma_handle, gfp_t gfp)
158 158 {
159 159 void *ret;
160 160  
include/asm-alpha/dma-mapping.h
... ... @@ -31,7 +31,7 @@
31 31 #else /* no PCI - no IOMMU. */
32 32  
33 33 void *dma_alloc_coherent(struct device *dev, size_t size,
34   - dma_addr_t *dma_handle, int gfp);
  34 + dma_addr_t *dma_handle, gfp_t gfp);
35 35 int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
36 36 enum dma_data_direction direction);
37 37