mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00
layout: Turn overlap debug message into warning
Let's assume this function is only called when overlapping, included regions are fatal. Change-Id: Ie969e0538d302ccd58d3fec3921265ed3621eaa5 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/55999 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
This commit is contained in:
parent
c9039fc279
commit
f1f39d682f
4
layout.c
4
layout.c
@ -266,8 +266,8 @@ int included_regions_overlap(const struct flashrom_layout *const l)
|
|||||||
if (lhs->end < rhs->start)
|
if (lhs->end < rhs->start)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
msg_gdbg("Regions %s [0x%08x-0x%08x] and %s [0x%08x-0x%08x] overlap\n",
|
msg_gwarn("Regions %s [0x%08x-0x%08x] and %s [0x%08x-0x%08x] overlap\n",
|
||||||
lhs->name, lhs->start, lhs->end, rhs->name, rhs->start, rhs->end);
|
lhs->name, lhs->start, lhs->end, rhs->name, rhs->start, rhs->end);
|
||||||
overlap_detected = 1;
|
overlap_detected = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user