Message ID | 20230309090018.32029-7-ivan.hu@canonical.com |
---|---|
State | Accepted |
Headers | show |
Series | [01/10] dmicheck: fix the extended bios ROM size bit check of type 0 | expand |
diff --git a/src/dmi/dmicheck/dmicheck.c b/src/dmi/dmicheck/dmicheck.c index f2f8cb55..be934ad4 100644 --- a/src/dmi/dmicheck/dmicheck.c +++ b/src/dmi/dmicheck/dmicheck.c @@ -1743,7 +1743,7 @@ static void dmicheck_entry(fwts_framework *fw, if (hdr->length < 0x07) break; dmi_min_max_uint8_check(fw, table, addr, "Type", hdr, 0x4, 0x1, 0x9); - fwts_dmi_value_range t21_ranges[] = {{0x1, 0x8}, {0xa0, 0xa2}}; + fwts_dmi_value_range t21_ranges[] = {{0x1, 0x8}, {0xa0, 0xa4}}; dmi_ranges_uint8_check(fw, table, addr, "Interface", hdr, 0x5, t21_ranges); break;
Signed-off-by: Ivan Hu <ivan.hu@canonical.com> --- src/dmi/dmicheck/dmicheck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)