diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:54:23 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:00:35 +0530 |
commit | 4b7ae34277608a30346d076beb44cbc466aa73e5 (patch) | |
tree | f2bbe93683288de577fcf7801d927a273c92f28a | |
parent | df9c04ed3ff455aa5cb7c4bcddf4544fe54cfa33 (diff) | |
download | kernel_samsung_smdk4412-4b7ae34277608a30346d076beb44cbc466aa73e5.zip kernel_samsung_smdk4412-4b7ae34277608a30346d076beb44cbc466aa73e5.tar.gz kernel_samsung_smdk4412-4b7ae34277608a30346d076beb44cbc466aa73e5.tar.bz2 |
headers_check fix: linux/minix_fs.h
fix the following 'make headers_check' warning:
usr/include/linux/minix_fs.h:34: 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/minix_fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/minix_fs.h b/include/linux/minix_fs.h index 0e39745..13fe09e 100644 --- a/include/linux/minix_fs.h +++ b/include/linux/minix_fs.h @@ -1,6 +1,7 @@ #ifndef _LINUX_MINIX_FS_H #define _LINUX_MINIX_FS_H +#include <linux/types.h> #include <linux/magic.h> /* |