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>
This commit is contained in:
parent
0e25580fe1
commit
6266c417a2
|
@ -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 */
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue