treewide: Fix include guards

Include guards should cover the whole file.

Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Change-Id: Idbb7b26b31460ad5ac6b8a55a41eb274a8fcec92
Reviewed-on: https://review.coreboot.org/c/coreboot/+/89871
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jakub "Kuba" Czapiga <czapiga@google.com>
This commit is contained in:
Maximilian Brune 2025-11-02 23:11:22 +01:00 committed by Matt DeVillier
commit 04d5201426
6 changed files with 18 additions and 16 deletions

View file

@ -2,7 +2,6 @@
#ifndef __AMD64_SAVE_STATE_H__
#define __AMD64_SAVE_STATE_H__
#endif
#include <types.h>
#include <cpu/x86/smm.h>
@ -111,3 +110,5 @@ typedef struct {
u64 rcx;
u64 rax;
} __packed amd64_smm_state_save_area_t;
#endif // __AMD64_SAVE_STATE_H__