diff options
| author | Roland Dreier <rolandd@cisco.com> | 2005-10-28 18:50:51 -0400 | 
|---|---|---|
| committer | Roland Dreier <rolandd@cisco.com> | 2005-10-28 18:50:51 -0400 | 
| commit | a4da0628efd788eb199dd9df225e296035ec2539 (patch) | |
| tree | 1e611030c993e1480dc2f07f26976d2d33002b0d /arch/arm/mm/consistent.c | |
| parent | 70a30e16a8a9d22396a4d1e96af86e43594df584 (diff) | |
| parent | 20731945ae743034353a88c307920d1f16cf8ac8 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'arch/arm/mm/consistent.c')
| -rw-r--r-- | arch/arm/mm/consistent.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mm/consistent.c b/arch/arm/mm/consistent.c index 26356ce4da54..82f4d5e27c54 100644 --- a/arch/arm/mm/consistent.c +++ b/arch/arm/mm/consistent.c  | |||
| @@ -75,7 +75,7 @@ static struct vm_region consistent_head = { | |||
| 75 | }; | 75 | }; | 
| 76 | 76 | ||
| 77 | static struct vm_region * | 77 | static struct vm_region * | 
| 78 | vm_region_alloc(struct vm_region *head, size_t size, int gfp) | 78 | vm_region_alloc(struct vm_region *head, size_t size, gfp_t gfp) | 
| 79 | { | 79 | { | 
| 80 | unsigned long addr = head->vm_start, end = head->vm_end - size; | 80 | unsigned long addr = head->vm_start, end = head->vm_end - size; | 
| 81 | unsigned long flags; | 81 | unsigned long flags; | 
| @@ -133,7 +133,7 @@ static struct vm_region *vm_region_find(struct vm_region *head, unsigned long ad | |||
| 133 | #endif | 133 | #endif | 
| 134 | 134 | ||
| 135 | static void * | 135 | static void * | 
| 136 | __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, int gfp, | 136 | __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp, | 
| 137 | pgprot_t prot) | 137 | pgprot_t prot) | 
| 138 | { | 138 | { | 
| 139 | struct page *page; | 139 | struct page *page; | 
| @@ -251,7 +251,7 @@ __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, int gfp, | |||
| 251 | * virtual and bus address for that space. | 251 | * virtual and bus address for that space. | 
| 252 | */ | 252 | */ | 
| 253 | void * | 253 | void * | 
| 254 | dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, int gfp) | 254 | dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) | 
| 255 | { | 255 | { | 
| 256 | return __dma_alloc(dev, size, handle, gfp, | 256 | return __dma_alloc(dev, size, handle, gfp, | 
| 257 | pgprot_noncached(pgprot_kernel)); | 257 | pgprot_noncached(pgprot_kernel)); | 
| @@ -263,7 +263,7 @@ EXPORT_SYMBOL(dma_alloc_coherent); | |||
| 263 | * dma_alloc_coherent above. | 263 | * dma_alloc_coherent above. | 
| 264 | */ | 264 | */ | 
| 265 | void * | 265 | void * | 
| 266 | dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, int gfp) | 266 | dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) | 
| 267 | { | 267 | { | 
| 268 | return __dma_alloc(dev, size, handle, gfp, | 268 | return __dma_alloc(dev, size, handle, gfp, | 
| 269 | pgprot_writecombine(pgprot_kernel)); | 269 | pgprot_writecombine(pgprot_kernel)); | 
