[PATCH 2/3] clk: Forward declare struct of_device_id in linux/clk.h

Andrey Smirnov andrew.smirnov at gmail.com
Sat Mar 31 18:13:56 PDT 2018


Forward declare struct of_device_id in linux/clk.h in order to avoid
warnings like the following:

warning: 'struct of_device_id' declared inside parameter list will not be visible outside
of this definition or declaration
 int of_clk_init(struct device_node *root, const struct of_device_id *matches);
                                                        ^~~~~~~~~~~~

Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
 include/linux/clk.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/clk.h b/include/linux/clk.h
index 081a85972..c6465b1c9 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -323,6 +323,7 @@ struct clk *clk_register_composite(const char *name,
 
 struct device_node;
 struct of_phandle_args;
+struct of_device_id;
 
 #if defined(CONFIG_COMMON_CLK_OF_PROVIDER)
 
-- 
2.14.3




More information about the barebox mailing list