summaryrefslogtreecommitdiff
path: root/include/linux/clk
diff options
context:
space:
mode:
authorChen-Yu Tsai <wens@csie.org>2015-08-18 15:16:45 +0800
committerStephen Boyd <sboyd@codeaurora.org>2015-08-25 10:54:06 -0700
commita8cfe8cfd0da4502f5fa924f47c7ba6c7047c722 (patch)
tree30128b8b3faa092068e3619c082a2132cbd18210 /include/linux/clk
parente3ee276a5a62a1cd06de46aa0c808000d3fef00e (diff)
clk: Add missing header for 'bool' definition to clk-conf.h
of_clk_set_defaults uses the type 'bool', but clk-conf.h does not include its definition. This results in a compile error when only clk-conf.h is used. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clk')
-rw-r--r--include/linux/clk/clk-conf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/clk/clk-conf.h b/include/linux/clk/clk-conf.h
index f3050e15f833..e0c362363c38 100644
--- a/include/linux/clk/clk-conf.h
+++ b/include/linux/clk/clk-conf.h
@@ -7,6 +7,8 @@
* published by the Free Software Foundation.
*/
+#include <linux/types.h>
+
struct device_node;
#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)