diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-06-23 11:39:59 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-06-24 10:52:53 +0000 |
commit | 741000d31b9870b529c6911b55981f24976ce7f4 (patch) | |
tree | 0f74b08d1c1b4785c9fed707f4fd778ea147940a /util/cbfstool | |
parent | 9ab80a33a53ec294d89d9d37deb5d48ada2e1935 (diff) |
util/cbfstool/flashmap: Correct local includes
Change-Id: I78ba7afd2085c7e9c93e892470111bfee154bb04
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33733
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/cbfstool')
-rw-r--r-- | util/cbfstool/flashmap/fmap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/util/cbfstool/flashmap/fmap.c b/util/cbfstool/flashmap/fmap.c index f1d2fb9e0c..06f179f1f9 100644 --- a/util/cbfstool/flashmap/fmap.c +++ b/util/cbfstool/flashmap/fmap.c @@ -48,10 +48,9 @@ #include <limits.h> #include <assert.h> -#include <fmap.h> -#include <valstr.h> - +#include "fmap.h" #include "kv_pair.h" +#include "valstr.h" #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) |