diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-06-21 07:31:40 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2019-06-21 16:04:16 +0000 |
commit | d26844ce823791acbc95fb3e109d948b9c36995c (patch) | |
tree | f87a19d0d922a2218a8821923aa32d6823059b2c /src/cpu/intel | |
parent | e2d152c118af73500d5c6162c0c1407712458742 (diff) | |
download | coreboot-d26844ce823791acbc95fb3e109d948b9c36995c.tar.xz |
cpu: Add missing #include <commonlib/helpers.h>
ALIGN and ALIGN_UP needs 'helpers.h'
Change-Id: Ib3a9e0d6caff69f4b0adb54364b47cc6ac52a610
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33658
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/cpu/intel')
-rw-r--r-- | src/cpu/intel/car/romstage.c | 1 | ||||
-rw-r--r-- | src/cpu/intel/haswell/romstage.c | 1 | ||||
-rw-r--r-- | src/cpu/intel/smm/gen1/smmrelocate.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/intel/car/romstage.c b/src/cpu/intel/car/romstage.c index a7daff4fb2..89052d6be6 100644 --- a/src/cpu/intel/car/romstage.c +++ b/src/cpu/intel/car/romstage.c @@ -16,6 +16,7 @@ #include <cpu/intel/romstage.h> #include <cpu/x86/mtrr.h> #include <arch/symbols.h> +#include <commonlib/helpers.h> #include <program_loading.h> #include <timestamp.h> diff --git a/src/cpu/intel/haswell/romstage.c b/src/cpu/intel/haswell/romstage.c index 0426bb4cea..3cbdf44c1d 100644 --- a/src/cpu/intel/haswell/romstage.c +++ b/src/cpu/intel/haswell/romstage.c @@ -24,6 +24,7 @@ #include <device/pci_def.h> #include <cpu/x86/lapic.h> #include <cbmem.h> +#include <commonlib/helpers.h> #include <program_loading.h> #include <romstage_handoff.h> #include <vendorcode/google/chromeos/chromeos.h> diff --git a/src/cpu/intel/smm/gen1/smmrelocate.c b/src/cpu/intel/smm/gen1/smmrelocate.c index f3192bcd55..d52043f047 100644 --- a/src/cpu/intel/smm/gen1/smmrelocate.c +++ b/src/cpu/intel/smm/gen1/smmrelocate.c @@ -21,6 +21,7 @@ #include <string.h> #include <device/device.h> #include <device/pci.h> +#include <commonlib/helpers.h> #include <cpu/x86/cache.h> #include <cpu/x86/mp.h> #include <cpu/x86/msr.h> |