Commit 2c957902 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Michal Simek

microblaze: fix iounmap prototype

The missing 'volatile' keyword on the iounmap argument leads to lots of
harmless warnings in an allmodconfig build:

sound/pci/echoaudio/echoaudio.c:1879:10: warning: passing argument 1 of 'iounmap' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers]
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 71e7673d
...@@ -36,7 +36,7 @@ extern resource_size_t isa_mem_base; ...@@ -36,7 +36,7 @@ extern resource_size_t isa_mem_base;
#ifdef CONFIG_MMU #ifdef CONFIG_MMU
#define page_to_bus(page) (page_to_phys(page)) #define page_to_bus(page) (page_to_phys(page))
extern void iounmap(void __iomem *addr); extern void iounmap(volatile void __iomem *addr);
extern void __iomem *ioremap(phys_addr_t address, unsigned long size); extern void __iomem *ioremap(phys_addr_t address, unsigned long size);
#define ioremap_nocache(addr, size) ioremap((addr), (size)) #define ioremap_nocache(addr, size) ioremap((addr), (size))
......
...@@ -127,7 +127,7 @@ void __iomem *ioremap(phys_addr_t addr, unsigned long size) ...@@ -127,7 +127,7 @@ void __iomem *ioremap(phys_addr_t addr, unsigned long size)
} }
EXPORT_SYMBOL(ioremap); EXPORT_SYMBOL(ioremap);
void iounmap(void __iomem *addr) void iounmap(volatile void __iomem *addr)
{ {
if ((__force void *)addr > high_memory && if ((__force void *)addr > high_memory &&
(unsigned long) addr < ioremap_bot) (unsigned long) addr < ioremap_bot)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment