aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-11-18 23:26:38 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-21 14:07:46 +0000
commit1840f935d65905ead7a44d18aa974b29bdb8c79e (patch)
treed9325ad1aabac77c1713b954e99f9ff56331b04f
parente5ca71db06a539d30f83d5fdf920e24ef4891df5 (diff)
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>
-rw-r--r--src/include/memlayout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/memlayout.h b/src/include/memlayout.h
index 1e9fca8198..7b6cfb62d9 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, \