summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/smihandler.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-03-09 00:14:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-03-10 00:31:38 +0000
commit15c4345cfdcf9c07aabd6cbaba5a1e2d89caff96 (patch)
treee3e611c442856ad5c7023a23d5f7f9d88fb3651e /src/soc/amd/picasso/smihandler.c
parent3680e02e9e137e777180f2604ae1f34176ba3882 (diff)
downloadcoreboot-15c4345cfdcf9c07aabd6cbaba5a1e2d89caff96.tar.gz
coreboot-15c4345cfdcf9c07aabd6cbaba5a1e2d89caff96.tar.bz2
coreboot-15c4345cfdcf9c07aabd6cbaba5a1e2d89caff96.zip
soc/amd/picasso/smihandler: sort includes alphabetically
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I674cff3352cd9f5d20b3d8f7e77339d045cadbb8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/51357 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/picasso/smihandler.c')
-rw-r--r--src/soc/amd/picasso/smihandler.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/soc/amd/picasso/smihandler.c b/src/soc/amd/picasso/smihandler.c
index 08790364101f..b13c6e0be724 100644
--- a/src/soc/amd/picasso/smihandler.c
+++ b/src/soc/amd/picasso/smihandler.c
@@ -1,20 +1,20 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-#include <arch/io.h>
-#include <console/console.h>
-#include <cpu/x86/smm.h>
-#include <cpu/x86/cache.h>
#include <acpi/acpi.h>
-#include <arch/hlt.h>
-#include <soc/smi.h>
-#include <soc/southbridge.h>
-#include <amdblocks/acpimmio.h>
#include <amdblocks/acpi.h>
+#include <amdblocks/acpimmio.h>
#include <amdblocks/psp.h>
#include <amdblocks/smi.h>
#include <amdblocks/smm.h>
+#include <arch/hlt.h>
+#include <arch/io.h>
+#include <console/console.h>
+#include <cpu/x86/cache.h>
+#include <cpu/x86/smm.h>
#include <elog.h>
+#include <soc/smi.h>
#include <soc/smu.h>
+#include <soc/southbridge.h>
#include <types.h>
static void fch_apmc_smi_handler(void)