diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:56:32 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:01:11 +0530 |
commit | 8ef342021a55e4237e593c7f6304d0caa7bf1232 (patch) | |
tree | d7e796d5683f2af1eebe8fb7675810f2a822bca8 /include | |
parent | 4b7ae34277608a30346d076beb44cbc466aa73e5 (diff) | |
download | linux-3.10-8ef342021a55e4237e593c7f6304d0caa7bf1232.tar.gz linux-3.10-8ef342021a55e4237e593c7f6304d0caa7bf1232.tar.bz2 linux-3.10-8ef342021a55e4237e593c7f6304d0caa7bf1232.zip |
headers_check fix: linux/msdos_fs.h
fix the following 'make headers_check' warning:
usr/include/linux/msdos_fs.h:100: 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/msdos_fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/msdos_fs.h b/include/linux/msdos_fs.h index e0a9b207920..ce38f1caa5e 100644 --- a/include/linux/msdos_fs.h +++ b/include/linux/msdos_fs.h @@ -1,6 +1,7 @@ #ifndef _LINUX_MSDOS_FS_H #define _LINUX_MSDOS_FS_H +#include <linux/types.h> #include <linux/magic.h> #include <asm/byteorder.h> |