From a57e497e2b30e730f74f1112d1f6134eb7e66cc3 Mon Sep 17 00:00:00 2001 From: Karthikeyan Ramasubramanian Date: Thu, 21 Mar 2024 15:09:51 -0600 Subject: drivers/intel/ish: Include stdbool.h to identify bool type When the concerned chip.h file is included in a source file, it causes compilation error saying unknown type name bool. Fix it by including the stdbool.h file in the chip.h file. BUG=None TEST=Build Brox by including the chip.h file in one of the source files. Change-Id: I4159e2c281c3e89dc45555ce38ad8637a3bf8587 Signed-off-by: Karthikeyan Ramasubramanian Reviewed-on: https://review.coreboot.org/c/coreboot/+/81417 Tested-by: build bot (Jenkins) Reviewed-by: Shelley Chen --- src/drivers/intel/ish/chip.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/drivers') diff --git a/src/drivers/intel/ish/chip.h b/src/drivers/intel/ish/chip.h index 69f3253b4e..3bcf65ad41 100644 --- a/src/drivers/intel/ish/chip.h +++ b/src/drivers/intel/ish/chip.h @@ -3,6 +3,8 @@ #ifndef __DRIVERS_INTEL_ISH_CHIP_H__ #define __DRIVERS_INTEL_ISH_CHIP_H__ +#include + /* * Intel Integrated Sensor Hub (ISH) */ -- cgit v1.2.3