Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/51382 )
Change subject: soc/amd/stoneyridge/smihandler: sort includes alphabetically ......................................................................
soc/amd/stoneyridge/smihandler: sort includes alphabetically
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ib317493fe938fe961aed06557e655ed8498e2694 Reviewed-on: https://review.coreboot.org/c/coreboot/+/51382 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Marshall Dawson marshalldawson3rd@gmail.com --- M src/soc/amd/stoneyridge/smihandler.c 1 file changed, 8 insertions(+), 8 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved
diff --git a/src/soc/amd/stoneyridge/smihandler.c b/src/soc/amd/stoneyridge/smihandler.c index 75a82cf..f9c4a54 100644 --- a/src/soc/amd/stoneyridge/smihandler.c +++ b/src/soc/amd/stoneyridge/smihandler.c @@ -1,18 +1,18 @@ /* 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/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/southbridge.h> #include <types.h>
static void fch_apmc_smi_handler(void)