summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2023-05-18 20:38:26 +1000
committerAnastasia Klimchuk <aklm@chromium.org>2023-05-22 00:46:47 +0000
commit2e81c05ad34a08e341b2ddc69648efe5751a54b1 (patch)
tree836ab3c5829141675b5c110ce2d10237d3e6a2d8
parent59287a0bd0e4d58a4d2b434bde3db9b2376ac7c1 (diff)
downloadflashrom-2e81c05ad34a08e341b2ddc69648efe5751a54b1.tar.gz
flashrom-2e81c05ad34a08e341b2ddc69648efe5751a54b1.tar.bz2
flashrom-2e81c05ad34a08e341b2ddc69648efe5751a54b1.zip
erasure_layout: Simplify include paths
Header files can be found without explicitly specifying include directory on the file path. Change-Id: I6ef34273d088d8fb4559fe3d801d1247ad9b3fa2 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/75322 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aarya <aarya.chaumal@gmail.com>
-rw-r--r--erasure_layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/erasure_layout.c b/erasure_layout.c
index 108fea4c0..c9ac44bc5 100644
--- a/erasure_layout.c
+++ b/erasure_layout.c
@@ -20,9 +20,9 @@
#include <limits.h>
#include <string.h>
-#include "include/flash.h"
-#include "include/layout.h"
-#include "include/erasure_layout.h"
+#include "flash.h"
+#include "layout.h"
+#include "erasure_layout.h"
static size_t calculate_block_count(const struct flashchip *chip, size_t eraser_idx)
{