diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:39:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 14:53:28 -0400 |
commit | b79fdc76978515fba2c4f3b5b4f2e679c5ff1463 (patch) | |
tree | cf7b3d3cbcdd64f60a0a88edd1f921d7708aebf5 /fs | |
parent | a595a0e910960ccd4611719d5fb5c279859efaee (diff) |
common: Drop flash.h from common header
Move this uncommon header out of the common header.
Fix up some style problems in flash.h while we are here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cramfs/cramfs.c | 1 | ||||
-rw-r--r-- | fs/jffs2/jffs2_1pass.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/cramfs/cramfs.c b/fs/cramfs/cramfs.c index 228f599d44b..7ef48bbc064 100644 --- a/fs/cramfs/cramfs.c +++ b/fs/cramfs/cramfs.c @@ -25,6 +25,7 @@ */ #include <common.h> +#include <flash.h> #include <malloc.h> #include <asm/byteorder.h> #include <linux/stat.h> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index 1115c8682e8..a98745c50ea 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -113,6 +113,7 @@ #include <common.h> #include <config.h> +#include <flash.h> #include <malloc.h> #include <div64.h> #include <linux/compiler.h> |