diff options
Diffstat (limited to 'arch/h8300/mm')
-rw-r--r-- | arch/h8300/mm/kmap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/h8300/mm/kmap.c b/arch/h8300/mm/kmap.c index 26ab172..5c7af09 100644 --- a/arch/h8300/mm/kmap.c +++ b/arch/h8300/mm/kmap.c @@ -24,12 +24,14 @@ #undef DEBUG +#define VIRT_OFFSET (0x01000000) + /* * Map some physical address range into the kernel address space. */ void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) { - return (void *)physaddr; + return (void *)(physaddr + VIRT_OFFSET); } /* |