diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 17:50:04 +0100 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:37:31 +0100 |
commit | 6b6bcd0ed953ae0ed73af4759788fb8384bbaeed (patch) | |
tree | 710bd2124d11894040fadde03976ac9dd273b1c6 /include | |
parent | headers_check fix: linux/sound.h (diff) | |
download | linux-6b6bcd0ed953ae0ed73af4759788fb8384bbaeed.tar.xz linux-6b6bcd0ed953ae0ed73af4759788fb8384bbaeed.zip |
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 c844a229acc9..99b8bdb17b2b 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 |