summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/cbfs_image.c
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-11-20 22:50:26 -0800
committerFurquan Shaikh <furquan@google.com>2020-12-08 18:57:35 +0000
commit19ba95f799e6a27223b9bde3d4d66a685794e3ed (patch)
tree472a2421b98d88627525b62b1002d4d314d05696 /util/cbfstool/cbfs_image.c
parent6b6e9b503d9aac1e5c9e71623752399683c31218 (diff)
downloadcoreboot-19ba95f799e6a27223b9bde3d4d66a685794e3ed.tar.gz
coreboot-19ba95f799e6a27223b9bde3d4d66a685794e3ed.tar.bz2
coreboot-19ba95f799e6a27223b9bde3d4d66a685794e3ed.zip
util/cbfstool: Rename IS_TOP_ALIGNED_ADDRESS to IS_HOST_SPACE_ADDRESS
This change renames the macro `IS_TOP_ALIGNED_ADDRESS` to `IS_HOST_SPACE_ADDRESS` to make it clear that the macro checks if given address is an address in the host space as opposed to the SPI flash space. BUG=b:171534504 Change-Id: I84bb505df62ac41f1d364a662be145603c0bd5fa Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47830 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/cbfstool/cbfs_image.c')
-rw-r--r--util/cbfstool/cbfs_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c
index 7b8da42a6ac6..4249015c2445 100644
--- a/util/cbfstool/cbfs_image.c
+++ b/util/cbfstool/cbfs_image.c
@@ -721,7 +721,7 @@ int cbfs_add_entry(struct cbfs_image *image, struct buffer *buffer,
assert(image);
assert(buffer);
assert(buffer->data);
- assert(!IS_TOP_ALIGNED_ADDRESS(content_offset));
+ assert(!IS_HOST_SPACE_ADDRESS(content_offset));
const char *name = header->filename;