9
0
Fork 0

mips asm/types.h: add #ifndef to fix compile error

without "#ifndef __ASSEMBLY__ #endif", an assembly file
including this file will break compilation.

Signed-off-by: Du Huanpeng <u74147@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Du Huanpeng 2014-01-01 14:00:40 +08:00 committed by Sascha Hauer
parent 26f2c815d1
commit 3173c27e4a
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,8 @@
#include <asm-generic/int-ll64.h>
#ifndef __ASSEMBLY__
#if (defined(CONFIG_HIGHMEM) && defined(CONFIG_64BIT_PHYS_ADDR)) \
|| defined(CONFIG_64BIT)
typedef u64 dma_addr_t;
@ -21,6 +23,8 @@ typedef u32 dma_addr_t;
#endif
typedef u64 dma64_addr_t;
#endif /* __ASSEMBLY__ */
/*
* We don't use int-l64.h for the kernel anymore but still use it for
* userspace to avoid code changes.