|
@@ -34,6 +34,17 @@ static inline void outl(unsigned int x, unsigned long port)
|
|
BUG();
|
|
BUG();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline void __iomem *ioport_map(unsigned long port, unsigned int size)
|
|
|
|
+{
|
|
|
|
+ BUG();
|
|
|
|
+ return NULL;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static inline void ioport_unmap(void __iomem *addr)
|
|
|
|
+{
|
|
|
|
+ BUG();
|
|
|
|
+}
|
|
|
|
+
|
|
#define inb_p(addr) inb(addr)
|
|
#define inb_p(addr) inb(addr)
|
|
#define inw_p(addr) inw(addr)
|
|
#define inw_p(addr) inw(addr)
|
|
#define inl_p(addr) inl(addr)
|
|
#define inl_p(addr) inl(addr)
|