diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 10:59:49 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-02 17:44:26 -0800 |
commit | 38c7035f9cfdbf2787ee93cc1278ddc67190b279 (patch) | |
tree | 6b68653e8b76985136c10d49d27719ab2b7a9a14 /drivers/clk/imx | |
parent | 3d08f1564b169114b6f3d8ee6586acf8e4e54db5 (diff) | |
download | blackbird-obmc-linux-38c7035f9cfdbf2787ee93cc1278ddc67190b279.tar.gz blackbird-obmc-linux-38c7035f9cfdbf2787ee93cc1278ddc67190b279.zip |
clk: imx: 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/imx')
-rw-r--r-- | drivers/clk/imx/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h index c94ac5c26226..d942f5748d08 100644 --- a/drivers/clk/imx/clk.h +++ b/drivers/clk/imx/clk.h @@ -87,7 +87,7 @@ struct clk *imx_clk_fixup_mux(const char *name, void __iomem *reg, static inline struct clk *imx_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 *imx_clk_divider(const char *name, const char *parent, |