From 6a20caea01c5c72a4e57217990ac6aacdc6b7724 Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Wed, 23 Jul 2025 18:07:52 +0200 Subject: [PATCH] drivers/lenovo/hybrid_graphics: Add missing header Include the missing header stdbool.h Fixes compilation error hybrid_graphics.h:6:28: error: unknown type name 'bool' while refactoring some code. Change-Id: I96f7255049cd9e24d74838a173e920a00636b09e Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/c/coreboot/+/88546 Reviewed-by: Paul Menzel Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- src/drivers/lenovo/hybrid_graphics/hybrid_graphics.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/drivers/lenovo/hybrid_graphics/hybrid_graphics.h b/src/drivers/lenovo/hybrid_graphics/hybrid_graphics.h index b5de8a8566..d69486575d 100644 --- a/src/drivers/lenovo/hybrid_graphics/hybrid_graphics.h +++ b/src/drivers/lenovo/hybrid_graphics/hybrid_graphics.h @@ -3,6 +3,8 @@ #ifndef _DRIVERS_LENOVO_HYBRID_GRAPHICS_H_ #define _DRIVERS_LENOVO_HYBRID_GRAPHICS_H_ +#include + void early_hybrid_graphics(bool *enable_igd, bool *enable_peg); #endif /* _DRIVERS_LENOVO_HYBRID_GRAPHICS_CHIP_H_ */