From e15dd01422efda76dcb5346b37e9781af5fcb67c Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 1 Jul 2025 19:05:33 -0600 Subject: [PATCH] clk: Add missing to include/clk.h In this header we make direct references to some dm/device.h functions while not including the header directly. Add the missing include. Signed-off-by: Tom Rini --- include/clk.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/clk.h b/include/clk.h index f94135ff778..90b42a61867 100644 --- a/include/clk.h +++ b/include/clk.h @@ -9,6 +9,7 @@ #define _CLK_H_ #include +#include #include #include #include -- 2.47.3