Anastasia Klimchuk has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/75322 )
Change subject: erasure_layout: Remove unnecessary includes ......................................................................
erasure_layout: Remove unnecessary includes
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 --- M erasure_layout.c 1 file changed, 16 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/22/75322/1
diff --git a/erasure_layout.c b/erasure_layout.c index 108fea4..c9ac44b 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) {