diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 10:59:54 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-02 17:44:59 -0800 |
commit | 0f4207f3d86a45d0a50454e277625c9311b510fc (patch) | |
tree | 0410577089a000682026caf8be5afc414269b7ae /drivers/clk | |
parent | 38c7035f9cfdbf2787ee93cc1278ddc67190b279 (diff) | |
download | blackbird-op-linux-0f4207f3d86a45d0a50454e277625c9311b510fc.tar.gz blackbird-op-linux-0f4207f3d86a45d0a50454e277625c9311b510fc.zip |
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>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/mxs/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mxs/clk.h b/drivers/clk/mxs/clk.h index a4590956d2a2..5a264a486ad9 100644 --- a/drivers/clk/mxs/clk.h +++ b/drivers/clk/mxs/clk.h @@ -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) { - 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, |