aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/haswell
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2021-02-12 08:17:35 +0100
committerAngel Pons <th3fanbus@gmail.com>2021-02-16 20:56:56 +0000
commit030d338bb23459dfd2f3f710e92a4031845c0e13 (patch)
treeeea1df3e126f2ad25827b064ff4cd12463d8ec19 /src/northbridge/intel/haswell
parent06c761ca948544861ef50cb494a1043839259b5f (diff)
nb/intel: Add missing <types.h>
Add needed but missing <types.h>. Change-Id: I801be1ca8da4b1641941d5571d2aa298470f407b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50578 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/haswell')
-rw-r--r--src/northbridge/intel/haswell/northbridge.c2
-rw-r--r--src/northbridge/intel/haswell/raminit.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/northbridge.c b/src/northbridge/intel/haswell/northbridge.c
index 501caf17f1..c59dce792f 100644
--- a/src/northbridge/intel/haswell/northbridge.c
+++ b/src/northbridge/intel/haswell/northbridge.c
@@ -3,7 +3,6 @@
#include <commonlib/helpers.h>
#include <console/console.h>
#include <acpi/acpi.h>
-#include <stdint.h>
#include <delay.h>
#include <cpu/intel/haswell/haswell.h>
#include <device/device.h>
@@ -14,6 +13,7 @@
#include <boot/tables.h>
#include <security/intel/txt/txt_register.h>
#include <southbridge/intel/lynxpoint/pch.h>
+#include <types.h>
#include "chip.h"
#include "haswell.h"
diff --git a/src/northbridge/intel/haswell/raminit.c b/src/northbridge/intel/haswell/raminit.c
index 9617ffb59d..96e6a2aeff 100644
--- a/src/northbridge/intel/haswell/raminit.c
+++ b/src/northbridge/intel/haswell/raminit.c
@@ -16,6 +16,8 @@
#include <spd.h>
#include <security/vboot/vboot_common.h>
#include <commonlib/region.h>
+#include <types.h>
+
#include "raminit.h"
#include "pei_data.h"
#include "haswell.h"