Skip to content

Commit

Permalink
[PATCH] drivers/dma trivial annotations
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 10, 2006
1 parent c714de5 commit 47b1653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/dma/ioatdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static int enumerate_dma_channels(struct ioat_device *device)

static struct ioat_desc_sw *ioat_dma_alloc_descriptor(
struct ioat_dma_chan *ioat_chan,
int flags)
gfp_t flags)
{
struct ioat_dma_descriptor *desc;
struct ioat_desc_sw *desc_sw;
Expand Down Expand Up @@ -686,7 +686,7 @@ static int __devinit ioat_probe(struct pci_dev *pdev,
{
int err;
unsigned long mmio_start, mmio_len;
void *reg_base;
void __iomem *reg_base;
struct ioat_device *device;

err = pci_enable_device(pdev);
Expand Down
4 changes: 2 additions & 2 deletions drivers/dma/ioatdma.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ extern struct list_head dma_client_list;

struct ioat_device {
struct pci_dev *pdev;
void *reg_base;
void __iomem *reg_base;
struct pci_pool *dma_pool;
struct pci_pool *completion_pool;

Expand Down Expand Up @@ -73,7 +73,7 @@ struct ioat_device {

struct ioat_dma_chan {

void *reg_base;
void __iomem *reg_base;

dma_cookie_t completed_cookie;
unsigned long last_completion;
Expand Down

0 comments on commit 47b1653

Please sign in to comment.