Tim Wawrzynczak has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/45407 )
Change subject: region_file_update_data: Change API to accept array of structs ......................................................................
Patch Set 2:
(2 comments)
https://review.coreboot.org/c/coreboot/+/45407/2/src/drivers/mrc_cache/mrc_c... File src/drivers/mrc_cache/mrc_cache.c:
https://review.coreboot.org/c/coreboot/+/45407/2/src/drivers/mrc_cache/mrc_c... PS2, Line 422: struct update_region_file_entry entries[1]; You should be able to just declare this as `struct update_region_file_entry entry` (for example), and then just call `region_file_update_data(&cache_file, &entry, 1) < )...` instead.
https://review.coreboot.org/c/coreboot/+/45407/2/src/drivers/mrc_cache/mrc_c... PS2, Line 551: struct update_region_file_entry entries[1]; same here