Skip to content

Commit

Permalink
[PATCH] fix iomem annotations in dart_iommu
Browse files Browse the repository at this point in the history
it's int __iomem *, not int * __iomem...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent 793af24 commit 6fa2ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/powerpc/sysdev/dart_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static unsigned long dart_tablesize;
static u32 *dart_vbase;

/* Mapped base address for the dart */
static unsigned int *__iomem dart;
static unsigned int __iomem *dart;

/* Dummy val that entries are set to when unused */
static unsigned int dart_emptyval;
Expand Down

0 comments on commit 6fa2ffe

Please sign in to comment.