summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-10-16 12:45:47 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-12-19 05:58:50 +0000
commit88f5c7178ebd1bb4137f495192fffe13bbea1c7c (patch)
tree75268f3592321075ee5516fab495375b5b64bdbe /src/cpu
parent0420e50b6b0ee25ba7802493caf33b2b6e320da2 (diff)
downloadcoreboot-88f5c7178ebd1bb4137f495192fffe13bbea1c7c.tar.xz
src: Remove unused 'include <arch/cpu.h>'
Change-Id: Iaa236f07aed52ccb8c4839047894a14a9446a109 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36080 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/intel/haswell/bootblock.c1
-rw-r--r--src/cpu/intel/haswell/haswell.h2
-rw-r--r--src/cpu/x86/lapic/apic_timer.c1
3 files changed, 1 insertions, 3 deletions
diff --git a/src/cpu/intel/haswell/bootblock.c b/src/cpu/intel/haswell/bootblock.c
index 70a4682175..e05936f59c 100644
--- a/src/cpu/intel/haswell/bootblock.c
+++ b/src/cpu/intel/haswell/bootblock.c
@@ -12,7 +12,6 @@
*/
#include <stdint.h>
-#include <arch/cpu.h>
#include <arch/bootblock.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/mtrr.h>
diff --git a/src/cpu/intel/haswell/haswell.h b/src/cpu/intel/haswell/haswell.h
index 4c67ba82ab..6ffb7e9a58 100644
--- a/src/cpu/intel/haswell/haswell.h
+++ b/src/cpu/intel/haswell/haswell.h
@@ -15,7 +15,7 @@
#ifndef _CPU_INTEL_HASWELL_H
#define _CPU_INTEL_HASWELL_H
-#include <arch/cpu.h>
+#include <stdint.h>
/* Haswell CPU types */
#define HASWELL_FAMILY_MOBILE 0x306c0
diff --git a/src/cpu/x86/lapic/apic_timer.c b/src/cpu/x86/lapic/apic_timer.c
index 0b3f6910ae..fbe4f08e0b 100644
--- a/src/cpu/x86/lapic/apic_timer.c
+++ b/src/cpu/x86/lapic/apic_timer.c
@@ -15,7 +15,6 @@
#include <console/console.h>
#include <delay.h>
#include <thread.h>
-#include <arch/cpu.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/lapic.h>