summaryrefslogtreecommitdiffstats
path: root/src/southbridge
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-09-16 23:24:41 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-17 22:31:48 +0000
commit6266c417a28a71eddd70c2cf2bfaaf63d1dbc0ef (patch)
tree03264ba15681ea98675129becffe6f2320c183f2 /src/southbridge
parent0e25580fe1db10cf45f3bb2684e068006a61afe1 (diff)
downloadcoreboot-6266c417a28a71eddd70c2cf2bfaaf63d1dbc0ef.tar.gz
coreboot-6266c417a28a71eddd70c2cf2bfaaf63d1dbc0ef.tar.bz2
coreboot-6266c417a28a71eddd70c2cf2bfaaf63d1dbc0ef.zip
sb/intel/bd82x6x,ibexpeak,lynxpoint/me.h: add missing includes
Include device/device.h to have struct device defined and types.h to have bool, u8, u16 and u32 defined. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I3c5d5a78c2e2dab21432ced5f84665eb78a49d52 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57727 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/intel/bd82x6x/me.h3
-rw-r--r--src/southbridge/intel/ibexpeak/me.h2
-rw-r--r--src/southbridge/intel/lynxpoint/me.h3
3 files changed, 8 insertions, 0 deletions
diff --git a/src/southbridge/intel/bd82x6x/me.h b/src/southbridge/intel/bd82x6x/me.h
index 0cb64964cfc4..a1e688dbddcb 100644
--- a/src/southbridge/intel/bd82x6x/me.h
+++ b/src/southbridge/intel/bd82x6x/me.h
@@ -3,6 +3,9 @@
#ifndef _INTEL_ME_H
#define _INTEL_ME_H
+#include <device/device.h>
+#include <types.h>
+
#define ME_RETRY 100000 /* 1 second */
#define ME_DELAY 10 /* 10 us */
diff --git a/src/southbridge/intel/ibexpeak/me.h b/src/southbridge/intel/ibexpeak/me.h
index 5db5feedd03e..4eea0af2d557 100644
--- a/src/southbridge/intel/ibexpeak/me.h
+++ b/src/southbridge/intel/ibexpeak/me.h
@@ -3,6 +3,8 @@
#ifndef _INTEL_ME_H
#define _INTEL_ME_H
+#include <types.h>
+
#define ME_RETRY 100000 /* 1 second */
#define ME_DELAY 10 /* 10 us */
diff --git a/src/southbridge/intel/lynxpoint/me.h b/src/southbridge/intel/lynxpoint/me.h
index 1767b54ffc40..d908e5b74534 100644
--- a/src/southbridge/intel/lynxpoint/me.h
+++ b/src/southbridge/intel/lynxpoint/me.h
@@ -3,6 +3,9 @@
#ifndef _INTEL_ME_H
#define _INTEL_ME_H
+#include <device/device.h>
+#include <types.h>
+
#define ME_RETRY 100000 /* 1 second */
#define ME_DELAY 10 /* 10 us */