From 2e81c05ad34a08e341b2ddc69648efe5751a54b1 Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Thu, 18 May 2023 20:38:26 +1000 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/flashrom/+/75322 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Aarya --- erasure_layout.c | 6 +++--- 1 file 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 #include -#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) {