diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-27 09:41:02 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-11-12 09:22:18 +0000 |
commit | d2b9ec13622d34714b4ecf8b9daf53b32665d3d7 (patch) | |
tree | 205a6f66c9ece4b05010b0c33a8c174bc954249c /src/soc/intel/broadwell | |
parent | a9a1913d4d3f27f681b6ef980f064b57da8c1a68 (diff) |
src: Remove unneeded include "{arch,cpu}/cpu.h"
Change-Id: I17c4fc4e3e2eeef7c720c6a020b37d8f7a0f57a4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/29300
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/bootblock/cpu.c | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/cpu_info.c | 2 | ||||
-rw-r--r-- | src/soc/intel/broadwell/include/soc/cpu.h | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/lpc.c | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/romstage/romstage.c | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/smi.c | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/smmrelocate.c | 1 |
7 files changed, 2 insertions, 6 deletions
diff --git a/src/soc/intel/broadwell/bootblock/cpu.c b/src/soc/intel/broadwell/bootblock/cpu.c index 133b1a40d7..7508bc2279 100644 --- a/src/soc/intel/broadwell/bootblock/cpu.c +++ b/src/soc/intel/broadwell/bootblock/cpu.c @@ -14,7 +14,6 @@ */ #include <stdint.h> -#include <arch/cpu.h> #include <cpu/x86/cache.h> #include <cpu/x86/msr.h> #include <cpu/x86/mtrr.h> diff --git a/src/soc/intel/broadwell/cpu_info.c b/src/soc/intel/broadwell/cpu_info.c index d89c83ee3f..bb438ed51f 100644 --- a/src/soc/intel/broadwell/cpu_info.c +++ b/src/soc/intel/broadwell/cpu_info.c @@ -15,7 +15,7 @@ */ #include <console/console.h> -#include <cpu/cpu.h> +#include <arch/cpu.h> #include <cpu/x86/msr.h> #include <soc/cpu.h> #include <soc/msr.h> diff --git a/src/soc/intel/broadwell/include/soc/cpu.h b/src/soc/intel/broadwell/include/soc/cpu.h index 4755ba424e..8b0855227c 100644 --- a/src/soc/intel/broadwell/include/soc/cpu.h +++ b/src/soc/intel/broadwell/include/soc/cpu.h @@ -16,7 +16,6 @@ #ifndef _BROADWELL_CPU_H_ #define _BROADWELL_CPU_H_ -#include <arch/cpu.h> #include <device/device.h> /* CPU types */ diff --git a/src/soc/intel/broadwell/lpc.c b/src/soc/intel/broadwell/lpc.c index ff7ff81014..8219d5455b 100644 --- a/src/soc/intel/broadwell/lpc.c +++ b/src/soc/intel/broadwell/lpc.c @@ -22,6 +22,7 @@ #include <pc80/mc146818rtc.h> #include <pc80/isa-dma.h> #include <pc80/i8259.h> +#include <arch/cpu.h> #include <arch/io.h> #include <arch/ioapic.h> #include <arch/acpi.h> diff --git a/src/soc/intel/broadwell/romstage/romstage.c b/src/soc/intel/broadwell/romstage/romstage.c index 3abc853975..cc8bf5d69c 100644 --- a/src/soc/intel/broadwell/romstage/romstage.c +++ b/src/soc/intel/broadwell/romstage/romstage.c @@ -15,7 +15,6 @@ #include <stddef.h> #include <stdint.h> -#include <arch/cpu.h> #include <arch/io.h> #include <arch/cbfs.h> #include <arch/early_variables.h> diff --git a/src/soc/intel/broadwell/smi.c b/src/soc/intel/broadwell/smi.c index c159a759bf..f87b8a2afc 100644 --- a/src/soc/intel/broadwell/smi.c +++ b/src/soc/intel/broadwell/smi.c @@ -18,7 +18,6 @@ #include <device/pci.h> #include <console/console.h> #include <arch/io.h> -#include <cpu/cpu.h> #include <cpu/x86/cache.h> #include <cpu/x86/smm.h> #include <string.h> diff --git a/src/soc/intel/broadwell/smmrelocate.c b/src/soc/intel/broadwell/smmrelocate.c index 08b98e9de1..5e95bb4693 100644 --- a/src/soc/intel/broadwell/smmrelocate.c +++ b/src/soc/intel/broadwell/smmrelocate.c @@ -17,7 +17,6 @@ #include <string.h> #include <device/device.h> #include <device/pci.h> -#include <cpu/cpu.h> #include <cpu/x86/cache.h> #include <cpu/x86/lapic.h> #include <cpu/x86/mp.h> |