diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 10:34:04 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:22 +0530 |
commit | 0fc2eb3bade59365ed0b28b8ea3b5c448b2f4a26 (patch) | |
tree | d9c9a30fdb3bb1da315e39a487612e8fee01cfdd /arch/alpha | |
parent | 7e3fa56141175026136b392fd026d5d07c49720e (diff) | |
download | linux-3.10-0fc2eb3bade59365ed0b28b8ea3b5c448b2f4a26.tar.gz linux-3.10-0fc2eb3bade59365ed0b28b8ea3b5c448b2f4a26.tar.bz2 linux-3.10-0fc2eb3bade59365ed0b28b8ea3b5c448b2f4a26.zip |
headers_check fix: alpha, statfs.h
fix the following 'make headers_check' warning:
usr/include/asm-alpha/statfs.h:6: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/include/asm/statfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/alpha/include/asm/statfs.h b/arch/alpha/include/asm/statfs.h index de35cd438a1..ccd2e186bfd 100644 --- a/arch/alpha/include/asm/statfs.h +++ b/arch/alpha/include/asm/statfs.h @@ -1,6 +1,8 @@ #ifndef _ALPHA_STATFS_H #define _ALPHA_STATFS_H +#include <linux/types.h> + /* Alpha is the only 64-bit platform with 32-bit statfs. And doesn't even seem to implement statfs64 */ #define __statfs_word __u32 |