aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-30 11:50:04 -0500
committerJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-30 13:37:31 -0500
commit6b6bcd0ed953ae0ed73af4759788fb8384bbaeed (patch)
tree710bd2124d11894040fadde03976ac9dd273b1c6
parente6faa002be269233bf1e8961e7e0a79ca3f2db8b (diff)
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>
-rw-r--r--include/linux/synclink.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/synclink.h b/include/linux/synclink.h
index c844a229acc9..99b8bdb17b2b 100644
--- a/include/linux/synclink.h
+++ b/include/linux/synclink.h
@@ -13,6 +13,8 @@
13#define _SYNCLINK_H_ 13#define _SYNCLINK_H_
14#define SYNCLINK_H_VERSION 3.6 14#define SYNCLINK_H_VERSION 3.6
15 15
16#include <linux/types.h>
17
16#define BIT0 0x0001 18#define BIT0 0x0001
17#define BIT1 0x0002 19#define BIT1 0x0002
18#define BIT2 0x0004 20#define BIT2 0x0004