From: Greentime Hu Date: Thu, 19 Apr 2018 07:59:38 +0000 (+0800) Subject: nds32: Fix the unknown type u8 issue. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bb912671e36552e11352a6b749dcf68b0df6ad01;p=linux.git nds32: Fix the unknown type u8 issue. It broke the 'allmodconfig' build. We need to include to make sure the type is defined before using it. Signed-off-by: Greentime Hu Acked-by: Arnd Bergmann --- diff --git a/arch/nds32/include/asm/io.h b/arch/nds32/include/asm/io.h index 966e71b3c960b..71cd226d6863e 100644 --- a/arch/nds32/include/asm/io.h +++ b/arch/nds32/include/asm/io.h @@ -4,6 +4,8 @@ #ifndef __ASM_NDS32_IO_H #define __ASM_NDS32_IO_H +#include + extern void iounmap(volatile void __iomem *addr); #define __raw_writeb __raw_writeb static inline void __raw_writeb(u8 val, volatile void __iomem *addr)