Anastasia Klimchuk submitted this change.

View Change



1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.

Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved Aarya: Looks good to me, approved
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(-)

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)
{

To view, visit change 75322. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: I6ef34273d088d8fb4559fe3d801d1247ad9b3fa2
Gerrit-Change-Number: 75322
Gerrit-PatchSet: 3
Gerrit-Owner: Anastasia Klimchuk <aklm@chromium.org>
Gerrit-Reviewer: Aarya <aarya.chaumal@gmail.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm@chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus@gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged