summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2021-06-09 18:10:07 +0200
committerNico Huber <nico.h@gmx.de>2021-06-11 10:32:11 +0000
commit848f2872ea4f3b9306d4e1093bd816431ee998fa (patch)
tree27dc11c60842f4ba60053799d7dbfebd74debef9
parent6d438d42952e65be8cff6e6c6a148e238221b156 (diff)
downloadflashrom-848f2872ea4f3b9306d4e1093bd816431ee998fa.tar.gz
flashrom-848f2872ea4f3b9306d4e1093bd816431ee998fa.tar.bz2
flashrom-848f2872ea4f3b9306d4e1093bd816431ee998fa.zip
dummyflasher: Re-arrange includes
Gather library includes at the top. Change-Id: Ib20a3245cae3206dca1d8f88f705ac3628473f43 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/55359 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
-rw-r--r--dummyflasher.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dummyflasher.c b/dummyflasher.c
index 6a75506dd..049f9d5aa 100644
--- a/dummyflasher.c
+++ b/dummyflasher.c
@@ -18,15 +18,14 @@
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#include "flash.h"
#include "chipdrivers.h"
#include "programmer.h"
#include "flashchips.h"
#include "spi.h"
-#include <sys/types.h>
-#include <sys/stat.h>
-
enum emu_chip {
EMULATE_NONE,
EMULATE_ST_M25P10_RES,