| /* SPDX-License-Identifier: GPL-2.0 */ |
| * Copyright (C) 2013 Samsung Electronics Co., Ltd. |
| * Sylwester Nawrocki <s.nawrocki@samsung.com> |
| #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) |
| struct clk_hw *of_clk_get_hw(struct device_node *np, |
| int index, const char *con_id); |
| #else /* !CONFIG_COMMON_CLK || !CONFIG_OF */ |
| static inline struct clk_hw *of_clk_get_hw(struct device_node *np, |
| int index, const char *con_id) |
| struct clk_hw *clk_find_hw(const char *dev_id, const char *con_id); |
| struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw, |
| const char *dev_id, const char *con_id); |
| void __clk_put(struct clk *clk); |
| /* All these casts to avoid ifdefs in clkdev... */ |
| static inline struct clk * |
| clk_hw_create_clk(struct device *dev, struct clk_hw *hw, const char *dev_id, |
| static inline void __clk_put(struct clk *clk) { } |