aboutsummaryrefslogtreecommitdiff
path: root/include/linux/bfs_fs.h
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-30 20:34:15 +0530
committerJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-30 23:40:06 +0530
commit1da9ebd5abb2e960c4ca4d49f7587e6c76b16ac0 (patch)
tree6e8c60f5b880627498d465044d07f779e962f28c /include/linux/bfs_fs.h
parent5d461bfebe4be9ae8d25d4570d4eaa415ca76f0f (diff)
headers_check fix: linux/bfs_fs.h
fix the following 'make headers_check' warning: usr/include/linux/bfs_fs.h:24: 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/linux/bfs_fs.h')
-rw-r--r--include/linux/bfs_fs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/bfs_fs.h b/include/linux/bfs_fs.h
index 8ed6dfdcd78..1c0b355aa51 100644
--- a/include/linux/bfs_fs.h
+++ b/include/linux/bfs_fs.h
@@ -6,6 +6,8 @@
#ifndef _LINUX_BFS_FS_H
#define _LINUX_BFS_FS_H
+#include <linux/types.h>
+
#define BFS_BSIZE_BITS 9
#define BFS_BSIZE (1<<BFS_BSIZE_BITS)
@@ -17,7 +19,6 @@
#define BFS_VDIR 2L
#define BFS_VREG 1L
-
/* BFS inode layout on disk */
struct bfs_inode {
__le16 i_ino;