Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69494 )
Change subject: mb/emulation/qemu: Move packed attribute ......................................................................
mb/emulation/qemu: Move packed attribute
The jenkins build complains about this now that clang has been added.
src/mainboard/emulation/qemu-q35/cpu.c:37:1: error: attribute '__packed__' is ignored, place it after "union" to apply attribute to type declaration [-Werror,-Wignored-attributes] __packed union save_state {
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Id8faa24239505d808d09c00d825344edc7c4b7d9 --- M src/mainboard/emulation/qemu-q35/cpu.c 1 file changed, 18 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/69494/1
diff --git a/src/mainboard/emulation/qemu-q35/cpu.c b/src/mainboard/emulation/qemu-q35/cpu.c index 2a2707a..698cd9c 100644 --- a/src/mainboard/emulation/qemu-q35/cpu.c +++ b/src/mainboard/emulation/qemu-q35/cpu.c @@ -34,7 +34,7 @@ * SMRAM entry point to here. */
-__packed union save_state { +union __packed save_state { amd64_smm_state_save_area_t amd64; struct { char _reserved[sizeof(amd64_smm_state_save_area_t)