mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
cbfs: do not pack struct cbfs_cachenode
With the __packed attribute sandbox_defconfig cannot be compiled with GCC 9.2.1: fs/cbfs/cbfs.c: In function ‘file_cbfs_fill_cache’: fs/cbfs/cbfs.c:164:16: error: taking address of packed member of ‘struct cbfs_cachenode’ may result in an unaligned pointer value [-Werror=address-of-packed-member] 164 | cache_tail = &new_node->next; | ^~~~~~~~~~~~~~~ struct cbfs_cachenode is only an internal structure. So let's rearrange the fields such that the structure is naturally packed and remove the __packed attribute. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Bin Meng
parent
5d6f05352b
commit
895ae8726d
@@ -72,13 +72,13 @@ struct cbfs_fileheader {
|
|||||||
|
|
||||||
struct cbfs_cachenode {
|
struct cbfs_cachenode {
|
||||||
struct cbfs_cachenode *next;
|
struct cbfs_cachenode *next;
|
||||||
u32 type;
|
|
||||||
void *data;
|
void *data;
|
||||||
u32 data_length;
|
|
||||||
char *name;
|
char *name;
|
||||||
|
u32 type;
|
||||||
|
u32 data_length;
|
||||||
u32 name_length;
|
u32 name_length;
|
||||||
u32 attributes_offset;
|
u32 attributes_offset;
|
||||||
} __packed;
|
};
|
||||||
|
|
||||||
extern enum cbfs_result file_cbfs_result;
|
extern enum cbfs_result file_cbfs_result;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user