Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/69797 )
Change subject: include/memlayout.h: update comment about VBOOT2 work buffer size ......................................................................
include/memlayout.h: update comment about VBOOT2 work buffer size
VB2_FIRMWARE_WORKBUF_RECOMMENDED_SIZE is nowadays defined in vboot/firmware/2lib/include/2constants.h, so update the comment.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ia7c9a5476ae06d4bac762da1729aff878b7d0965 Reviewed-on: https://review.coreboot.org/c/coreboot/+/69797 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Elyes Haouas ehaouas@noos.fr --- M src/include/memlayout.h 1 file changed, 17 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Elyes Haouas: Looks good to me, approved
diff --git a/src/include/memlayout.h b/src/include/memlayout.h index 1e9fca8..7b6cfb6 100644 --- a/src/include/memlayout.h +++ b/src/include/memlayout.h @@ -161,7 +161,7 @@ #endif
/* VBOOT2_WORK must always use VB2_FIRMWARE_WORKBUF_RECOMMENDED_SIZE for its - * size argument. The constant is imported via vb2_workbuf_size.h. */ + * size argument. The constant is imported via 2constants.h. */ #define VBOOT2_WORK(addr, sz) \ REGION(vboot2_work, addr, sz, 16) \ _ = ASSERT(sz == VB2_FIRMWARE_WORKBUF_RECOMMENDED_SIZE, \