Skip to content

Commit

Permalink
headers_check fix: linux/bfs_fs.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jaswinder Singh Rajput committed Jan 30, 2009
1 parent 5d461bf commit 1da9ebd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/linux/bfs_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -17,7 +19,6 @@
#define BFS_VDIR 2L
#define BFS_VREG 1L


/* BFS inode layout on disk */
struct bfs_inode {
__le16 i_ino;
Expand Down

0 comments on commit 1da9ebd

Please sign in to comment.