diff options
author | Frank Blaschka <frank.blaschka@de.ibm.com> | 2014-11-06 07:17:06 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-11-18 12:23:01 -0500 |
commit | 99e97b7106d492a3cac4f7963f4a89935d2fbca4 (patch) | |
tree | b36db5cca5f3d0b67401dfe277bcbfd8bada36b1 | |
parent | a6b42afa3fc452339e157ad5245320804cf1206f (diff) |
s390/io: add ioport_map stubs
add ioport_map stubs to make vfio build on s390.
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | arch/s390/include/asm/io.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/s390/include/asm/io.h b/arch/s390/include/asm/io.h index cd6b9ee7b69c..ba516f8f918a 100644 --- a/arch/s390/include/asm/io.h +++ b/arch/s390/include/asm/io.h | |||
@@ -38,6 +38,15 @@ static inline void iounmap(volatile void __iomem *addr) | |||
38 | { | 38 | { |
39 | } | 39 | } |
40 | 40 | ||
41 | static inline void __iomem *ioport_map(unsigned long port, unsigned int nr) | ||
42 | { | ||
43 | return NULL; | ||
44 | } | ||
45 | |||
46 | static inline void ioport_unmap(void __iomem *p) | ||
47 | { | ||
48 | } | ||
49 | |||
41 | /* | 50 | /* |
42 | * s390 needs a private implementation of pci_iomap since ioremap with its | 51 | * s390 needs a private implementation of pci_iomap since ioremap with its |
43 | * offset parameter isn't sufficient. That's because BAR spaces are not | 52 | * offset parameter isn't sufficient. That's because BAR spaces are not |