提交 1bcbfbfd 编写于 作者: L Logan Gunthorpe 提交者: Richard Weinberger

um: add dummy ioremap and iounmap functions

The user mode architecture does not provide ioremap or iounmap, and
because of this, the arch won't build when the functions are used in some
core libraries.

I have designs to use these functions in scatterlist.c where they'd
almost certainly never be called on the um architecture but it does need
to compile.
Signed-off-by: NLogan Gunthorpe <logang@deltatee.com>
Signed-off-by: NStephen Bates <sbates@raithlin.com>
Signed-off-by: NRichard Weinberger <richard@nod.at>
上级 0a987645
#ifndef _ASM_UM_IO_H
#define _ASM_UM_IO_H
#define ioremap ioremap
static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
{
return (void __iomem *)(unsigned long)offset;
}
#define iounmap iounmap
static inline void iounmap(void __iomem *addr)
{
}
#include <asm-generic/io.h>
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册