Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

romfs: have romfs_fs.h pull in necessary headers

This header uses things like __be32, so pull in linux/types.h.

Further, it uses BLOCK_SIZE, so pull in linux/fs.h.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Mike Frysinger and committed by
Linus Torvalds
8d0a1dec 264b795f

+3
+3
include/linux/romfs_fs.h
··· 1 1 #ifndef __LINUX_ROMFS_FS_H 2 2 #define __LINUX_ROMFS_FS_H 3 3 4 + #include <linux/types.h> 5 + #include <linux/fs.h> 6 + 4 7 /* The basic structures of the romfs filesystem */ 5 8 6 9 #define ROMBSIZE BLOCK_SIZE