Anastasia Klimchuk has submitted this change. ( https://review.coreboot.org/c/flashrom/+/75322 )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: erasure_layout: Simplify include paths ......................................................................
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 --- M erasure_layout.c 1 file changed, 20 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved Aarya: Looks good to me, approved
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) {