From 46e293ddff163cea3446ee4413a3c6d071119e60 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Wed, 9 Aug 2017 11:50:03 -0600 Subject: soc/intel/common: smi handler fix comilation error The device_t type is used in smihandler.h, but the header is not including a header which provides that type. Fix that by #includeing Change-Id: I89af949b088bf569d330f2ea74b1b8ae97e1ed52 Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/20933 Reviewed-by: Furquan Shaikh Reviewed-by: Subrata Banik Tested-by: build bot (Jenkins) --- src/soc/intel/common/block/include/intelblocks/smihandler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/soc/intel/common/block/include/intelblocks/smihandler.h b/src/soc/intel/common/block/include/intelblocks/smihandler.h index b587bb136d..4423904371 100644 --- a/src/soc/intel/common/block/include/intelblocks/smihandler.h +++ b/src/soc/intel/common/block/include/intelblocks/smihandler.h @@ -16,6 +16,8 @@ #ifndef SOC_INTEL_COMMON_BLOCK_SMI_HANDLER_H #define SOC_INTEL_COMMON_BLOCK_SMI_HANDLER_H +#include +#include #include struct gpi_status; -- cgit v1.2.3