1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

erasure_layout: Add region boundaries to printed info message

Change-Id: I511a79754cff15e7dba26f5313d7015830780f60
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/78492
Reviewed-by: Alexander Goncharov <chat@joursoir.net>
Reviewed-by: Aarya <aarya.chaumal@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Anastasia Klimchuk 2023-10-21 20:29:58 +11:00 committed by Anastasia Klimchuk
parent fa8808595a
commit 9c130dbfcc

View File

@ -174,11 +174,17 @@ static void align_region(const struct erase_layout *layout, struct flashctx *con
}
if (start_diff) {
msg_cinfo("Region start not sector aligned! Extending start boundaries...\n");
msg_cinfo("Region [0x%08x - 0x%08x] is not sector aligned! "
"Extending start boundaries by 0x%08x bytes, from 0x%08x -> 0x%08x\n",
*region_start, *region_end,
start_diff, *region_start, *region_start - start_diff);
*region_start = *region_start - start_diff;
}
if (end_diff) {
msg_cinfo("Region end not sector aligned! Extending end boundaries...\n");
msg_cinfo("Region [0x%08x - 0x%08x] is not sector aligned! "
"Extending end boundaries by 0x%08x bytes, from 0x%08x -> 0x%08x\n",
*region_start, *region_end,
end_diff, *region_end, *region_end + end_diff);
*region_end = *region_end + end_diff;
}
}