From 8f6bc22f3bf420f7e3ef92984d3bfa928fc9cf97 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 9 Apr 2014 08:29:40 +0200 Subject: [PATCH] mips: io: include generic io.h To get definitions for inb/outb and friends. Signed-off-by: Sascha Hauer Cc: Antony Pavlov --- arch/mips/include/asm/io.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/mips/include/asm/io.h b/arch/mips/include/asm/io.h index 1cc8a5146..4832be6d0 100644 --- a/arch/mips/include/asm/io.h +++ b/arch/mips/include/asm/io.h @@ -78,4 +78,6 @@ static inline void __raw_writel(u32 b, volatile void __iomem *addr) #define out_be16(a, v) __raw_writew(__cpu_to_be16(v), a) #define out_be32(a, v) __raw_writel(__cpu_to_be32(v), a) +#include + #endif /* __ASM_MIPS_IO_H */