Răsfoiți Sursa

[PATCH] fix iomem annotations in dart_iommu

it's int __iomem *, not int * __iomem...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro 19 ani în urmă
părinte
comite
6fa2ffe901
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      arch/powerpc/sysdev/dart_iommu.c

+ 1 - 1
arch/powerpc/sysdev/dart_iommu.c

@@ -59,7 +59,7 @@ static unsigned long dart_tablesize;
 static u32 *dart_vbase;
 static u32 *dart_vbase;
 
 
 /* Mapped base address for the dart */
 /* 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 */
 /* Dummy val that entries are set to when unused */
 static unsigned int dart_emptyval;
 static unsigned int dart_emptyval;