projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
226fd70
)
clk: add include guard to clk-conf.h
author
Masahiro Yamada
<yamada.masahiro@socionext.com>
Tue, 20 Aug 2019 03:05:36 +0000
(12:05 +0900)
committer
Stephen Boyd
<sboyd@kernel.org>
Tue, 17 Sep 2019 17:27:46 +0000
(10:27 -0700)
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>
include/linux/clk/clk-conf.h
patch
|
blob
|
history
diff --git
a/include/linux/clk/clk-conf.h
b/include/linux/clk/clk-conf.h
index 85f8cf9d12261d78eeedf70dc420cbe604d3b08a..eae9652c70cd25bb244f38c5ab8b448c6f9cf8c9 100644
(file)
--- a/
include/linux/clk/clk-conf.h
+++ b/
include/linux/clk/clk-conf.h
@@
-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 */