diff options
author | Chen-Yu Tsai <wens@csie.org> | 2015-08-18 03:16:45 -0400 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-08-25 13:54:06 -0400 |
commit | a8cfe8cfd0da4502f5fa924f47c7ba6c7047c722 (patch) | |
tree | 30128b8b3faa092068e3619c082a2132cbd18210 | |
parent | e3ee276a5a62a1cd06de46aa0c808000d3fef00e (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>
-rw-r--r-- | include/linux/clk/clk-conf.h | 2 |
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 @@ | |||
7 | * published by the Free Software Foundation. | 7 | * published by the Free Software Foundation. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <linux/types.h> | ||
11 | |||
10 | struct device_node; | 12 | struct device_node; |
11 | 13 | ||
12 | #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) | 14 | #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) |