diff mbox series

clk: Include missing headers for linux/clk-provider.h

Message ID 7c7f76c4-6269-ae16-d57b-8d74324c8aae@gmail.com
State Accepted
Commit 9fca6729c6df2bc6978a74f60c0a151e57b437d8
Delegated to: Lukasz Majewski
Headers show
Series clk: Include missing headers for linux/clk-provider.h | expand

Commit Message

Sean Anderson Dec. 25, 2019, 4:56 a.m. UTC
This header was missing a couple of include dependencies when included on its
own.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
---
 include/linux/clk-provider.h | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index 02ff1a311a..0ef6e685ad 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -8,6 +8,10 @@ 
  */
 #ifndef __LINUX_CLK_PROVIDER_H
 #define __LINUX_CLK_PROVIDER_H
+
+#include <dm.h>
+#include <linux/bitops.h>
+#include <linux/err.h>
 #include <clk-uclass.h>

 static inline void clk_dm(ulong id, struct clk *clk)