From: Masahiro Yamada Date: Wed, 13 Jan 2016 04:16:09 +0000 (+0900) Subject: clk: add needed include and declaration to include/clk.h X-Git-Tag: v2016.03-rc1~243^2~34 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ad1cf785853eef60e48053ead4fbb47dad840d55;p=u-boot clk: add needed include and declaration to include/clk.h This header uses ulong, so it needs to include . Likewise, "struct udevice" must be declared before it is used. Signed-off-by: Masahiro Yamada Acked-by: Simon Glass --- diff --git a/include/clk.h b/include/clk.h index f2443013b1..371784a56e 100644 --- a/include/clk.h +++ b/include/clk.h @@ -8,6 +8,10 @@ #ifndef _CLK_H_ #define _CLK_H_ +#include + +struct udevice; + int soc_clk_dump(void); struct clk_ops {