9
0
Fork 0

Avoid build error on "config SPI" is y

In case he configures with make ARCH=x85 menuconfig,
config SPI will be set to "y". And he will got an error on spi.h.

Signed-off-by: Masaki Muranaka <monaka@monami-ya.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Masaki Muranaka 2013-06-01 23:05:22 +09:00 committed by Sascha Hauer
parent bd43d2fddc
commit bee7cd3da2
1 changed files with 4 additions and 0 deletions

View File

@ -29,12 +29,16 @@ typedef unsigned int __u32;
typedef __signed__ long long __s64;
typedef unsigned long long __u64;
typedef signed char s8;
typedef unsigned char u8;
typedef signed short s16;
typedef unsigned short u16;
typedef signed int s32;
typedef unsigned int u32;
typedef signed long long s64;
typedef unsigned long long u64;
#endif /* __ASSEMBLY__ */