summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-07-01 19:05:33 -0600
committerTom Rini <[email protected]>2025-10-28 12:12:20 -0600
commite15dd01422efda76dcb5346b37e9781af5fcb67c (patch)
treea233906288c9e2b4cb85374abb5e4583038489a7 /include
parenta5c83da3ccb372133fdbe43e0a8e65e06b3291e8 (diff)
clk: Add missing <dm/device.h> 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 <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/clk.h1
1 files changed, 1 insertions, 0 deletions
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 <dm/ofnode.h>
+#include <dm/device.h>
#include <linux/err.h>
#include <linux/errno.h>
#include <linux/types.h>