diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:01:11 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:47:07 +0530 |
commit | bd71b5f734c66ad0134e308036b13d122907b8c6 (patch) | |
tree | e526ccf8130d5f149f91172d2795c8862e58b892 | |
parent | 4144147081b9d08e69055a780888fcbb7cfcbb8e (diff) | |
download | linux-stable-bd71b5f734c66ad0134e308036b13d122907b8c6.tar.gz linux-stable-bd71b5f734c66ad0134e308036b13d122907b8c6.tar.bz2 linux-stable-bd71b5f734c66ad0134e308036b13d122907b8c6.zip |
headers_check fix: linux/efs_fs_sb.h
fix the following 'make headers_check' warning:
usr/include/linux/efs_fs_sb.h:49: 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/efs_fs_sb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/efs_fs_sb.h b/include/linux/efs_fs_sb.h index ff1945e37790..a01be90c58cc 100644 --- a/include/linux/efs_fs_sb.h +++ b/include/linux/efs_fs_sb.h @@ -9,6 +9,7 @@ #ifndef __EFS_FS_SB_H__ #define __EFS_FS_SB_H__ +#include <linux/types.h> #include <linux/magic.h> /* EFS superblock magic numbers */ |