diff options
| author | Tom Rini <[email protected]> | 2025-07-01 19:05:33 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-28 12:12:20 -0600 |
| commit | e15dd01422efda76dcb5346b37e9781af5fcb67c (patch) | |
| tree | a233906288c9e2b4cb85374abb5e4583038489a7 /include | |
| parent | a5c83da3ccb372133fdbe43e0a8e65e06b3291e8 (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.h | 1 |
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> |
