diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-03-09 00:14:48 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-03-10 00:31:38 +0000 |
commit | 15c4345cfdcf9c07aabd6cbaba5a1e2d89caff96 (patch) | |
tree | e3e611c442856ad5c7023a23d5f7f9d88fb3651e /src/soc/amd | |
parent | 3680e02e9e137e777180f2604ae1f34176ba3882 (diff) |
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')
-rw-r--r-- | src/soc/amd/picasso/smihandler.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/soc/amd/picasso/smihandler.c b/src/soc/amd/picasso/smihandler.c index 0879036410..b13c6e0be7 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) |