mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 22:51:37 +00:00
clk: fixed-rate: Move to_clk_fixed_rate() to C file
The only user of this macro is the fixed rate basic type. Move it there to avoid polluting provider drivers. Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org> Link: https://lkml.kernel.org/r/20190830150923.259497-5-sboyd@kernel.org
This commit is contained in:
parent
576859dfc5
commit
38d1e38093
2 changed files with 2 additions and 2 deletions
|
@ -24,6 +24,8 @@
|
||||||
* parent - fixed parent. No clk_set_parent support
|
* parent - fixed parent. No clk_set_parent support
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define to_clk_fixed_rate(_hw) container_of(_hw, struct clk_fixed_rate, hw)
|
||||||
|
|
||||||
static unsigned long clk_fixed_rate_recalc_rate(struct clk_hw *hw,
|
static unsigned long clk_fixed_rate_recalc_rate(struct clk_hw *hw,
|
||||||
unsigned long parent_rate)
|
unsigned long parent_rate)
|
||||||
{
|
{
|
||||||
|
|
|
@ -328,8 +328,6 @@ struct clk_fixed_rate {
|
||||||
unsigned long fixed_accuracy;
|
unsigned long fixed_accuracy;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define to_clk_fixed_rate(_hw) container_of(_hw, struct clk_fixed_rate, hw)
|
|
||||||
|
|
||||||
extern const struct clk_ops clk_fixed_rate_ops;
|
extern const struct clk_ops clk_fixed_rate_ops;
|
||||||
struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
|
struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
|
||||||
const char *parent_name, unsigned long flags,
|
const char *parent_name, unsigned long flags,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue