Skip to content

Commit

Permalink
[PATCH] gfp_t: dma-mapping (sh)
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 28, 2005
1 parent e82dd4d commit 6dae2c2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arch/sh/boards/renesas/rts7751r2d/mach.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern void init_rts7751r2d_IRQ(void);
extern void *rts7751r2d_ioremap(unsigned long, unsigned long);
extern int rts7751r2d_irq_demux(int irq);

extern void *voyagergx_consistent_alloc(struct device *, size_t, dma_addr_t *, int);
extern void *voyagergx_consistent_alloc(struct device *, size_t, dma_addr_t *, gfp_t);
extern int voyagergx_consistent_free(struct device *, size_t, void *, dma_addr_t);

/*
Expand Down
2 changes: 1 addition & 1 deletion arch/sh/cchips/voyagergx/consistent.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static LIST_HEAD(voya_alloc_list);
#define OHCI_SRAM_SIZE 0x10000

void *voyagergx_consistent_alloc(struct device *dev, size_t size,
dma_addr_t *handle, int flag)
dma_addr_t *handle, gfp_t flag)
{
struct list_head *list = &voya_alloc_list;
struct voya_alloc_entry *entry;
Expand Down
2 changes: 1 addition & 1 deletion arch/sh/drivers/pci/dma-dreamcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
static int gapspci_dma_used = 0;

void *dreamcast_consistent_alloc(struct device *dev, size_t size,
dma_addr_t *dma_handle, int flag)
dma_addr_t *dma_handle, gfp_t flag)
{
unsigned long buf;

Expand Down
2 changes: 1 addition & 1 deletion arch/sh/mm/consistent.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <linux/dma-mapping.h>
#include <asm/io.h>

void *consistent_alloc(int gfp, size_t size, dma_addr_t *handle)
void *consistent_alloc(gfp_t gfp, size_t size, dma_addr_t *handle)
{
struct page *page, *end, *free;
void *ret;
Expand Down
4 changes: 2 additions & 2 deletions include/asm-sh/dma-mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
extern struct bus_type pci_bus_type;

/* arch/sh/mm/consistent.c */
extern void *consistent_alloc(int gfp, size_t size, dma_addr_t *handle);
extern void *consistent_alloc(gfp_t gfp, size_t size, dma_addr_t *handle);
extern void consistent_free(void *vaddr, size_t size);
extern void consistent_sync(void *vaddr, size_t size, int direction);

Expand All @@ -26,7 +26,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)
{
if (sh_mv.mv_consistent_alloc) {
void *ret;
Expand Down
2 changes: 1 addition & 1 deletion include/asm-sh/machvec.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct sh_machine_vector

void (*mv_heartbeat)(void);

void *(*mv_consistent_alloc)(struct device *, size_t, dma_addr_t *, int);
void *(*mv_consistent_alloc)(struct device *, size_t, dma_addr_t *, gfp_t);
int (*mv_consistent_free)(struct device *, size_t, void *, dma_addr_t);
};

Expand Down

0 comments on commit 6dae2c2

Please sign in to comment.