Commit ab53cea4 authored by Christoph Hellwig's avatar Christoph Hellwig

xtensa: clean up ioremap

Use ioremap as the main implemented function, and defined
ioremap_nocache to it as a deprecated alias.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent c0d94aa5
...@@ -32,8 +32,7 @@ void xtensa_iounmap(volatile void __iomem *addr); ...@@ -32,8 +32,7 @@ void xtensa_iounmap(volatile void __iomem *addr);
/* /*
* Return the virtual address for the specified bus memory. * Return the virtual address for the specified bus memory.
*/ */
static inline void __iomem *ioremap_nocache(unsigned long offset, static inline void __iomem *ioremap(unsigned long offset, unsigned long size)
unsigned long size)
{ {
if (offset >= XCHAL_KIO_PADDR if (offset >= XCHAL_KIO_PADDR
&& offset - XCHAL_KIO_PADDR < XCHAL_KIO_SIZE) && offset - XCHAL_KIO_PADDR < XCHAL_KIO_SIZE)
...@@ -52,15 +51,10 @@ static inline void __iomem *ioremap_cache(unsigned long offset, ...@@ -52,15 +51,10 @@ static inline void __iomem *ioremap_cache(unsigned long offset,
return xtensa_ioremap_cache(offset, size); return xtensa_ioremap_cache(offset, size);
} }
#define ioremap_cache ioremap_cache #define ioremap_cache ioremap_cache
#define ioremap_nocache ioremap_nocache
#define ioremap_wc ioremap_nocache
#define ioremap_wt ioremap_nocache
static inline void __iomem *ioremap(unsigned long offset, unsigned long size) #define ioremap_nocache ioremap
{ #define ioremap_wc ioremap
return ioremap_nocache(offset, size); #define ioremap_wt ioremap
}
static inline void iounmap(volatile void __iomem *addr) static inline void iounmap(volatile void __iomem *addr)
{ {
......
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