summaryrefslogtreecommitdiff
path: root/include/bloblist.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-12-27 13:07:04 -0800
committerSimon Glass <sjg@chromium.org>2023-12-31 07:21:02 -0700
commit47e1047b0cc25269124737696971ab0c3187666d (patch)
tree3742dc1927ca552dc2eead9efa56fe4d08ccf6a5 /include/bloblist.h
parent1f06ed41cc18943e379894c5a3c3f4e6b9de73e3 (diff)
bloblist: Drop spare value from bloblist record
Drop spare value from bloblist record header. For now it is still present in the header, with an underscore, so that tests continue to pass. Signed-off-by: Simon Glass <sjg@chromium.org> Co-developed-by: Raymond Mao <raymond.mao@linaro.org> Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
Diffstat (limited to 'include/bloblist.h')
-rw-r--r--include/bloblist.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/bloblist.h b/include/bloblist.h
index 7eff709ec8d..68f97395b78 100644
--- a/include/bloblist.h
+++ b/include/bloblist.h
@@ -205,13 +205,12 @@ struct bloblist_hdr {
* record's data starts at this offset from the start of the record
* @size: Size of record in bytes, excluding the header size. This does not
* need to be aligned (e.g. 3 is OK).
- * @spare: Spare space for other things
*/
struct bloblist_rec {
u32 tag;
u32 hdr_size;
u32 size;
- u32 spare;
+ u32 _spare;
};
/**