summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2022-11-12 21:09:08 -0700
committerArthur Heymans <arthur@aheymans.xyz>2022-11-13 13:29:04 +0000
commite13b263ef33664ff0029909479dedcfb832075ed (patch)
tree38e35511534cc66405db40ece524fbea940dc949
parent8855db95429c893ec80f38e92d7eec54ce2f1723 (diff)
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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/69494 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
-rw-r--r--src/mainboard/emulation/qemu-q35/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/emulation/qemu-q35/cpu.c b/src/mainboard/emulation/qemu-q35/cpu.c
index 2a2707a55f..698cd9c92a 100644
--- a/src/mainboard/emulation/qemu-q35/cpu.c
+++ b/src/mainboard/emulation/qemu-q35/cpu.c
@@ -34,7 +34,7 @@ static void get_smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
* 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)