From b5bf5cb3b3e81298247a53d5b514cf941cd13a9f Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Wed, 21 Sep 2016 11:28:53 +0900 Subject: treewide: use #include <...> to include public headers We are supposed to use #include <...> to include headers in the public include paths. We should use #include "..." only for headers in local directories. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- fs/yaffs2/yaffs_mtdif.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fs/yaffs2/yaffs_mtdif.c') diff --git a/fs/yaffs2/yaffs_mtdif.c b/fs/yaffs2/yaffs_mtdif.c index 6fcba04..636c777 100644 --- a/fs/yaffs2/yaffs_mtdif.c +++ b/fs/yaffs2/yaffs_mtdif.c @@ -19,10 +19,10 @@ #include "yaffs_mtdif.h" -#include "linux/mtd/mtd.h" -#include "linux/types.h" -#include "linux/time.h" -#include "linux/mtd/nand.h" +#include +#include +#include +#include static inline void translate_spare2oob(const struct yaffs_spare *spare, u8 *oob) -- cgit v1.1