mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-02 03:52:33 +00:00
clk: mxs: Remove CLK_IS_ROOT
This flag is a no-op now. Remove usage of the flag. Acked-by: Shawn Guo <shawnguo@kernel.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
38c7035f9c
commit
0f4207f3d8
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ struct clk *mxs_clk_frac(const char *name, const char *parent_name,
|
||||||
|
|
||||||
static inline struct clk *mxs_clk_fixed(const char *name, int rate)
|
static inline struct clk *mxs_clk_fixed(const char *name, int rate)
|
||||||
{
|
{
|
||||||
return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate);
|
return clk_register_fixed_rate(NULL, name, NULL, 0, rate);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct clk *mxs_clk_gate(const char *name,
|
static inline struct clk *mxs_clk_gate(const char *name,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue