diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-07 10:07:12 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-26 16:37:34 +0000 |
commit | 45d3205ba565ababcaf1e9e85a63dd7a0b1d72be (patch) | |
tree | 69fb098295fb88197d4f2ce77bfda3af1a957c9b /src/cpu/x86/backup_default_smm.c | |
parent | deb5645644edf8b8594f89acf4d33544a8ea6f44 (diff) |
cpu/x86: Clean up includes
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I01c6651079333686cb0eb68e89e56d7907868124
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68204
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/cpu/x86/backup_default_smm.c')
-rw-r--r-- | src/cpu/x86/backup_default_smm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/backup_default_smm.c b/src/cpu/x86/backup_default_smm.c index 1672e0b1dc..a574237c80 100644 --- a/src/cpu/x86/backup_default_smm.c +++ b/src/cpu/x86/backup_default_smm.c @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <string.h> #include <acpi/acpi.h> -#include <console/console.h> #include <cbmem.h> +#include <console/console.h> #include <cpu/x86/smm.h> +#include <string.h> void *backup_default_smm_area(void) { |