aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/fsp/rangeley/include/fspapi.h
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-07-31 17:56:51 +1000
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-08-01 02:41:18 +0200
commit2c3f94454dd29532569fd80f954e6289e7ee2fda (patch)
tree9b8bb867eee6c6b910e96fa0e0e9956e770afe87 /src/vendorcode/intel/fsp/rangeley/include/fspapi.h
parentaaaef061792f7904d75f401e1de376311d6cdd0b (diff)
vendorcode/intel/fsp/rangeley/include: Missing 'fsptypes.h'
Without the inclusion of 'fsptypes.h' the order of inclusion becomes tentative. Change-Id: I6360e4ebac6c414c380a19ef69d39d658ea203bd Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/6423 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <gaumless@gmail.com>
Diffstat (limited to 'src/vendorcode/intel/fsp/rangeley/include/fspapi.h')
-rw-r--r--src/vendorcode/intel/fsp/rangeley/include/fspapi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vendorcode/intel/fsp/rangeley/include/fspapi.h b/src/vendorcode/intel/fsp/rangeley/include/fspapi.h
index 5378b2acbc..5009246db4 100644
--- a/src/vendorcode/intel/fsp/rangeley/include/fspapi.h
+++ b/src/vendorcode/intel/fsp/rangeley/include/fspapi.h
@@ -31,6 +31,8 @@ are permitted provided that the following conditions are met:
#ifndef _FSP_API_H_
#define _FSP_API_H_
+#include <fsptypes.h>
+
#pragma pack(1)
typedef VOID (* CONTINUATION_PROC)(EFI_STATUS Status, VOID *HobListPtr);
@@ -62,4 +64,4 @@ typedef struct {
typedef FSP_STATUS (FSPAPI *FSP_FSP_INIT) (FSP_INIT_PARAMS *FspInitParamPtr);
typedef FSP_STATUS (FSPAPI *FSP_NOTFY_PHASE) (NOTIFY_PHASE_PARAMS *NotifyPhaseParamPtr);
-#endif \ No newline at end of file
+#endif /* _FSP_API_H_ */