diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-01 15:28:02 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-08 09:04:30 +0300 |
commit | 6fa2ffe901c77cdd8db9616db66894e96c12143d (patch) | |
tree | 28be6bb017914959381214c100880846e2d7870f /arch/powerpc | |
parent | 793af244090ccb5f99091c5a999ce97e4d017834 (diff) | |
download | linux-6fa2ffe901c77cdd8db9616db66894e96c12143d.tar.xz |
[PATCH] fix iomem annotations in dart_iommu
it's int __iomem *, not int * __iomem...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/dart_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/dart_iommu.c b/arch/powerpc/sysdev/dart_iommu.c index 977de9db8754..6298264efe36 100644 --- a/arch/powerpc/sysdev/dart_iommu.c +++ b/arch/powerpc/sysdev/dart_iommu.c @@ -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; |