1 /* SPDX-License-Identifier: GPL-2.0 */
6 #ifndef __LINUX_OF_CLK_H
7 #define __LINUX_OF_CLK_H
12 #if defined(CONFIG_COMMON_CLK) && defined(CONFIG_OF)
14 unsigned int of_clk_get_parent_count(struct device_node *np);
15 const char *of_clk_get_parent_name(struct device_node *np, int index);
16 void of_clk_init(const struct of_device_id *matches);
18 #else /* !CONFIG_COMMON_CLK || !CONFIG_OF */
20 static inline unsigned int of_clk_get_parent_count(struct device_node *np)
24 static inline const char *of_clk_get_parent_name(struct device_node *np,
29 static inline void of_clk_init(const struct of_device_id *matches) {}
31 #endif /* !CONFIG_COMMON_CLK || !CONFIG_OF */
33 #endif /* __LINUX_OF_CLK_H */