From: Stephen Boyd Date: Tue, 1 Mar 2016 18:59:54 +0000 (-0800) Subject: clk: mxs: Remove CLK_IS_ROOT X-Git-Tag: next-20160307~10^2~26 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0f4207f3d86a45d0a50454e277625c9311b510fc;p=karo-tx-linux.git clk: mxs: Remove CLK_IS_ROOT This flag is a no-op now. Remove usage of the flag. Acked-by: Shawn Guo Signed-off-by: Stephen Boyd --- 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,