Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50375 )
Change subject: soc/intel/{baytrail,broadwell}: Add missing <cbmem.h> ......................................................................
soc/intel/{baytrail,broadwell}: Add missing <cbmem.h>
Change-Id: Ic4e55f8233e5cb5cea575ad0581adf457a45ba9a Fixes: commit 0322bc5ed8 (src: Remove unused <cbmem.h>) Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/soc/intel/baytrail/refcode.c M src/soc/intel/broadwell/refcode.c 2 files changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/50375/1
diff --git a/src/soc/intel/baytrail/refcode.c b/src/soc/intel/baytrail/refcode.c index d8623ae..8cd7336 100644 --- a/src/soc/intel/baytrail/refcode.c +++ b/src/soc/intel/baytrail/refcode.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <acpi/acpi.h> +#include <cbmem.h> #include <console/console.h> #include <console/streams.h> #include <cpu/x86/tsc.h> diff --git a/src/soc/intel/broadwell/refcode.c b/src/soc/intel/broadwell/refcode.c index 5d3ccce..31d6ad8 100644 --- a/src/soc/intel/broadwell/refcode.c +++ b/src/soc/intel/broadwell/refcode.c @@ -2,6 +2,7 @@
#include <string.h> #include <acpi/acpi.h> +#include <cbmem.h> #include <console/console.h> #include <console/streams.h> #include <program_loading.h>