diff options
author | Marc Jones <marcjones@sysproconsulting.com> | 2020-11-02 11:59:16 -0700 |
---|---|---|
committer | Marc Jones <marc@marcjonesconsulting.com> | 2020-11-06 16:59:33 +0000 |
commit | c6a6e54d056757d77da8a881622383239b814381 (patch) | |
tree | fbfa9b388d0a332d58d23aed88f7cd0948877c1c /src/soc | |
parent | af2efbb59b0d9b3fa1ac97b8cfa08754aebd9141 (diff) | |
download | coreboot-c6a6e54d056757d77da8a881622383239b814381.tar.xz |
soc/intel/xeon_sp/cpx: Reorder cpu.c .h includes
Clean up the header includes.
Change-Id: I9f61d1a82b37bc0ed803967dc64decf18f44adc9
Signed-off-by: Marc Jones <marcjones@sysproconsulting.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47169
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/xeon_sp/cpx/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/xeon_sp/cpx/cpu.c b/src/soc/intel/xeon_sp/cpx/cpu.c index 5bde819ec6..134824a250 100644 --- a/src/soc/intel/xeon_sp/cpx/cpu.c +++ b/src/soc/intel/xeon_sp/cpx/cpu.c @@ -6,6 +6,7 @@ #include <console/console.h> #include <console/debug.h> #include <cpu/cpu.h> +#include <cpu/intel/common/common.h> #include <cpu/intel/microcode.h> #include <cpu/intel/turbo.h> #include <cpu/x86/lapic.h> @@ -16,8 +17,8 @@ #include <soc/cpu.h> #include <soc/msr.h> #include <soc/soc_util.h> + #include "chip.h" -#include <cpu/intel/common/common.h> static const void *microcode_patch; |