clk: add include guard to clk-conf.h

Add a header include guard just in case.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Link: https://lkml.kernel.org/r/20190820030536.1181-1-yamada.masahiro@socionext.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
Masahiro Yamada 2019-08-20 12:05:36 +09:00 committed by Stephen Boyd
parent 226fd70209
commit d7aef6ef96
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,9 @@
* Sylwester Nawrocki <s.nawrocki@samsung.com>
*/
#ifndef __CLK_CONF_H
#define __CLK_CONF_H
#include <linux/types.h>
struct device_node;
@ -17,3 +20,5 @@ static inline int of_clk_set_defaults(struct device_node *node,
return 0;
}
#endif
#endif /* __CLK_CONF_H */