diff options
author | Al Viro | 2006-06-23 11:04:03 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-06-23 16:42:54 +0200 |
commit | 3f4cd389c3564caf1eec70957fcbd9d88c995d45 (patch) | |
tree | a7d5870592f04adc4ee2c2e004737a976b28f728 /arch/frv | |
parent | [PATCH] frv: __user infrastructure (diff) | |
download | kernel-qcow2-linux-3f4cd389c3564caf1eec70957fcbd9d88c995d45.tar.gz kernel-qcow2-linux-3f4cd389c3564caf1eec70957fcbd9d88c995d45.tar.xz kernel-qcow2-linux-3f4cd389c3564caf1eec70957fcbd9d88c995d45.zip |
[PATCH] frv: basic __iomem annotations
Add annotations to the FRV I/O handling functions for sparse.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/mm/kmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/frv/mm/kmap.c b/arch/frv/mm/kmap.c index c54f18e65ea6..40b62c5c2951 100644 --- a/arch/frv/mm/kmap.c +++ b/arch/frv/mm/kmap.c @@ -31,15 +31,15 @@ * Map some physical address range into the kernel address space. */ -void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) +void __iomem *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) { - return (void *)physaddr; + return (void __iomem *)physaddr; } /* * Unmap a ioremap()ed region again */ -void iounmap(void *addr) +void iounmap(void volatile __iomem *addr) { } |