From 7b466fb60b7d3f7793baf419b8b67b4b324702f4 Mon Sep 17 00:00:00 2001 From: Nicholas Chin Date: Sat, 5 Oct 2024 21:40:38 -0600 Subject: soc/*: Explicitly include static.h for DEV_PTR As per commit 05a13e7ed9b9 ("sconfig: Move (WEAK_)DEV_PTR from device.h to static.h"), sources that require access to devicetree static devices should directly include static.h. This allows static.h to be removed from device.h, eliminating unnecessary dependencies on the devicetree for objects that only need the device types and function declarations. The DEV_PTR macro resolves to names declared in static_devices.h, which is then included in static.h, so include the header whenever the macro is used. Change-Id: Ie281e9a9c015b19bfc96b83021a6e3afd98abcc3 Signed-off-by: Nicholas Chin Reviewed-on: https://review.coreboot.org/c/coreboot/+/84677 Reviewed-by: Felix Singer Reviewed-by: Angel Pons Reviewed-by: Jayvik Desai Tested-by: build bot (Jenkins) --- src/soc/intel/alderlake/retimer.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/soc/intel/alderlake/retimer.c') diff --git a/src/soc/intel/alderlake/retimer.c b/src/soc/intel/alderlake/retimer.c index 3fd9c2d43d..fd047dd9f2 100644 --- a/src/soc/intel/alderlake/retimer.c +++ b/src/soc/intel/alderlake/retimer.c @@ -4,6 +4,7 @@ #include #include #include +#include int retimer_get_index_for_typec(uint8_t typec_port) { -- cgit v1.2.3