[PATCH] sun3 __iomem annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
@@ -59,7 +59,7 @@ static inline void do_pmeg_mapin(unsigned long phys, unsigned long virt,
|
||||
}
|
||||
}
|
||||
|
||||
void *sun3_ioremap(unsigned long phys, unsigned long size,
|
||||
void __iomem *sun3_ioremap(unsigned long phys, unsigned long size,
|
||||
unsigned long type)
|
||||
{
|
||||
struct vm_struct *area;
|
||||
@@ -101,19 +101,19 @@ void *sun3_ioremap(unsigned long phys, unsigned long size,
|
||||
virt += seg_pages * PAGE_SIZE;
|
||||
}
|
||||
|
||||
return (void *)ret;
|
||||
return (void __iomem *)ret;
|
||||
|
||||
}
|
||||
|
||||
|
||||
void *__ioremap(unsigned long phys, unsigned long size, int cache)
|
||||
void __iomem *__ioremap(unsigned long phys, unsigned long size, int cache)
|
||||
{
|
||||
|
||||
return sun3_ioremap(phys, size, SUN3_PAGE_TYPE_IO);
|
||||
|
||||
}
|
||||
|
||||
void iounmap(void *addr)
|
||||
void iounmap(void __iomem *addr)
|
||||
{
|
||||
vfree((void *)(PAGE_MASK & (unsigned long)addr));
|
||||
}
|
||||
|
Reference in New Issue
Block a user