Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
@@ -6,7 +6,7 @@
static inline void *
dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
- int flag)
+ gfp_t flag)
{
BUG();
return NULL;
@@ -8,7 +8,7 @@
return (void *)NULL;
}
@@ -25,7 +25,7 @@ static inline int dma_set_mask(struct device *dev, u64 mask)
static inline void *dma_alloc_coherent(struct device *dev, size_t size,
- dma_addr_t *dma_handle, int flag)
+ dma_addr_t *dma_handle, gfp_t flag)
return consistent_alloc(NULL, size, dma_handle);
#else
@@ -10,7 +10,7 @@
struct device;
@@ -19,7 +19,7 @@ dma_set_mask(struct device *dev, u64 dma_mask)
return((void *) 0);