diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-21 11:28:53 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:53:56 -0400 |
commit | b5bf5cb3b3e81298247a53d5b514cf941cd13a9f (patch) | |
tree | 4c1aca23057918df6d173cc2be713111f6daf836 /fs/yaffs2/yaffs_mtdif2.c | |
parent | a4ca3799c2edf2b805f804a07d234a9e5eaae60f (diff) | |
download | u-boot-imx-b5bf5cb3b3e81298247a53d5b514cf941cd13a9f.zip u-boot-imx-b5bf5cb3b3e81298247a53d5b514cf941cd13a9f.tar.gz u-boot-imx-b5bf5cb3b3e81298247a53d5b514cf941cd13a9f.tar.bz2 |
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 <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'fs/yaffs2/yaffs_mtdif2.c')
-rw-r--r-- | fs/yaffs2/yaffs_mtdif2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/yaffs2/yaffs_mtdif2.c b/fs/yaffs2/yaffs_mtdif2.c index 234cb70..777486c 100644 --- a/fs/yaffs2/yaffs_mtdif2.c +++ b/fs/yaffs2/yaffs_mtdif2.c @@ -15,16 +15,16 @@ /* XXX U-BOOT XXX */ #include <common.h> -#include "asm/errno.h" +#include <asm/errno.h> #include "yportenv.h" #include "yaffs_trace.h" #include "yaffs_mtdif2.h" -#include "linux/mtd/mtd.h" -#include "linux/types.h" -#include "linux/time.h" +#include <linux/mtd/mtd.h> +#include <linux/types.h> +#include <linux/time.h> #include "yaffs_trace.h" #include "yaffs_packedtags2.h" |