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>
This commit is contained in:
Chen-Yu Tsai 2015-08-18 15:16:45 +08:00 committed by Stephen Boyd
parent e3ee276a5a
commit a8cfe8cfd0
1 changed files with 2 additions and 0 deletions

View File

@ -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)