diff options
author | Simon Glass <sjg@chromium.org> | 2020-09-20 03:49:30 +0300 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-10-06 18:07:54 +0300 |
commit | e9b6b2c77dd57b591d025f6895a779930a39a5ff (patch) | |
tree | ce20bdbb8b97cc7b48e7e812dda17a59310092c6 | |
parent | 4c1497e77661eea47d3dbb9bee029532cc0da198 (diff) | |
download | u-boot-e9b6b2c77dd57b591d025f6895a779930a39a5ff.tar.xz |
bloblist: Fix up a few comments
Adjust a few comments to make the meaning clearer.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/bloblist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bloblist.h b/include/bloblist.h index 965d8e9a29..2b4b669689 100644 --- a/include/bloblist.h +++ b/include/bloblist.h @@ -68,7 +68,7 @@ enum bloblist_tag_t { * the bloblist can grow up to this size. This starts out as * sizeof(bloblist_hdr) since we need at least that much space to store a * valid bloblist - * @spare: Space space + * @spare: Spare space (for future use) * @chksum: CRC32 for the entire bloblist allocated area. Since any of the * blobs can be altered after being created, this checksum is only valid * when the bloblist is finalised before jumping to the next stage of boot. @@ -115,7 +115,7 @@ struct bloblist_rec { * Searches the bloblist and returns the blob with the matching tag * * @tag: Tag to search for (enum bloblist_tag_t) - * @size: Expected size of the blob + * @size: Expected size of the blob, or 0 for any size * @return pointer to blob if found, or NULL if not found, or a blob was found * but it is the wrong size */ |