Attention is currently required from: Sean Rhodes.
Matt DeVillier has posted comments on this change by Sean Rhodes. ( https://review.coreboot.org/c/coreboot/+/76583?usp=email )
Change subject: mb/starlabs/lite: Put options in CFR cbtable ......................................................................
Patch Set 14:
(1 comment)
File src/mainboard/starlabs/lite/cfr.c:
https://review.coreboot.org/c/coreboot/+/76583/comment/2ce51fb9_6a3aca24?usp... : PS14, Line 213: void lb_board(struct lb_header *header) : { : char *current = (char *)lb_new_record(header); : struct lb_cfr *cfr_root = (struct lb_cfr *)current; : : cfr_write_setup_menu(cfr_root, sm_root); : } this should be: ``` void mb_cfr_setup_menu(struct lb_cfr *cfr_root) { cfr_write_setup_menu(cfr_root, sm_root); } ```