diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-31 13:13:37 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-04 01:02:44 +0000 |
commit | 1bd23e392238755a00fece98f67d1f2a0952305f (patch) | |
tree | ee8c214415462e280fd79fe6bf669d13ef81812e /src/mainboard/asus/p5gc-mx | |
parent | d1bf9bfe060f0643aec0be89dc7268a9025647fb (diff) |
mainboard: Include <cpu/cpu.h> instead of <arch/cpu.h>
Also sort includes.
Change-Id: Iccb7f28a2c913ae0983bf224a03610d7fdd13c68
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69030
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/asus/p5gc-mx')
-rw-r--r-- | src/mainboard/asus/p5gc-mx/early_init.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/mainboard/asus/p5gc-mx/early_init.c b/src/mainboard/asus/p5gc-mx/early_init.c index 22b6f0d0ee..6642011332 100644 --- a/src/mainboard/asus/p5gc-mx/early_init.c +++ b/src/mainboard/asus/p5gc-mx/early_init.c @@ -1,17 +1,18 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <bootblock_common.h> -#include <stdint.h> #include <cf9_reset.h> -#include <device/pnp_ops.h> -#include <superio/winbond/common/winbond.h> -#include <superio/winbond/w83627dhg/w83627dhg.h> #include <console/console.h> +#include <cpu/cpu.h> +#include <cpu/intel/speedstep.h> +#include <cpu/x86/msr.h> +#include <device/pnp_ops.h> #include <northbridge/intel/i945/i945.h> #include <southbridge/intel/i82801gx/i82801gx.h> -#include <cpu/x86/msr.h> -#include <cpu/intel/speedstep.h> -#include <arch/cpu.h> +#include <stdint.h> +#include <superio/winbond/common/winbond.h> +#include <superio/winbond/w83627dhg/w83627dhg.h> + #define SERIAL_DEV PNP_DEV(0x2e, W83627DHG_SP1) #define GPIO_DEV PNP_DEV(0x2e, W83627DHG_GPIO2345_V) |