summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/include/asm/io.h
blob: 6a0e77aead421c4ba748bfb83f47ce2b3e55d21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __ASM_SANDBOX_IO_H
#define __ASM_SANDBOX_IO_H

#define	IO_SPACE_LIMIT 0

#include <asm-generic/io.h>
#include <asm-generic/bitio.h>

static inline void *phys_to_virt(unsigned long phys)
{
       return (void *)phys;
}

static inline unsigned long virt_to_phys(volatile void *mem)
{
       return (unsigned long)mem;
}

#endif /* __ASM_SANDBOX_IO_H */