lib/coreboot_table: Rename lb_fill_pcie

By convention 'fill_lb_xxx' is used.

Change-Id: I046016b3898308bb56b4ad6a5834ab942fdd50f2
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69183
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Arthur Heymans
2022-11-03 10:56:45 +01:00
committed by Felix Held
parent 9948c521a6
commit 8c740b08a3
4 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@
void lb_string_platform_blob_version(struct lb_header *header);
#endif
__weak enum cb_err lb_fill_pcie(struct lb_pcie *pcie)
__weak enum cb_err fill_lb_pcie(struct lb_pcie *pcie)
{
return CB_ERR_NOT_IMPLEMENTED;
}
@@ -129,7 +129,7 @@ static void lb_pcie(struct lb_header *header)
{
struct lb_pcie pcie = { .tag = LB_TAG_PCIE, .size = sizeof(pcie) };
if (lb_fill_pcie(&pcie) != CB_SUCCESS)
if (fill_lb_pcie(&pcie) != CB_SUCCESS)
return;
memcpy(lb_new_record(header), &pcie, sizeof(pcie));