diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-09-19 18:37:01 -0400 |
---|---|---|
committer | Matthew Wilcox <willy@parisc-linux.org> | 2006-10-04 08:50:26 -0400 |
commit | 01232e932988fcf6ad87be49f69e633dd652a46d (patch) | |
tree | fa940c1970082cec27776dbfd6be53dba3ddc6f0 /arch/parisc | |
parent | 08a6436816f7a16113c73be767ee8d50440e494e (diff) |
[PARISC] Fix iounmap compile warning
iounmap's argument needs to be both const and volatile, otherwise we'll
get warnings that we're discarding pointer qualifiers
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/mm/ioremap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/mm/ioremap.c b/arch/parisc/mm/ioremap.c index 27384567a1d0..47a1d2ac9419 100644 --- a/arch/parisc/mm/ioremap.c +++ b/arch/parisc/mm/ioremap.c | |||
@@ -188,7 +188,7 @@ void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned l | |||
188 | } | 188 | } |
189 | EXPORT_SYMBOL(__ioremap); | 189 | EXPORT_SYMBOL(__ioremap); |
190 | 190 | ||
191 | void iounmap(void __iomem *addr) | 191 | void iounmap(const volatile void __iomem *addr) |
192 | { | 192 | { |
193 | if (addr > high_memory) | 193 | if (addr > high_memory) |
194 | return vfree((void *) (PAGE_MASK & (unsigned long __force) addr)); | 194 | return vfree((void *) (PAGE_MASK & (unsigned long __force) addr)); |