diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:20:04 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:07:31 +0530 |
commit | 6b6bcd0ed953ae0ed73af4759788fb8384bbaeed (patch) | |
tree | 710bd2124d11894040fadde03976ac9dd273b1c6 /include | |
parent | e6faa002be269233bf1e8961e7e0a79ca3f2db8b (diff) | |
download | op-kernel-dev-6b6bcd0ed953ae0ed73af4759788fb8384bbaeed.zip op-kernel-dev-6b6bcd0ed953ae0ed73af4759788fb8384bbaeed.tar.gz |
headers_check fix: linux/synclink.h
fix the following 'make headers_check' warning:
usr/include/linux/synclink.h:209: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/synclink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/synclink.h b/include/linux/synclink.h index c844a22..99b8bdb 100644 --- a/include/linux/synclink.h +++ b/include/linux/synclink.h @@ -13,6 +13,8 @@ #define _SYNCLINK_H_ #define SYNCLINK_H_VERSION 3.6 +#include <linux/types.h> + #define BIT0 0x0001 #define BIT1 0x0002 #define BIT2 0x0004 |