On Mon, 2015-03-30 at 19:40 +0200, Sascha Hauer wrote: > This patch adds common clock support for Mediatek SoCs, including plls, > muxes and clock gates.
trivia: > diff --git a/drivers/clk/mediatek/clk-gate.c b/drivers/clk/mediatek/clk-gate.c > +static int mtk_cg_bit_is_cleared(struct clk_hw *hw) > +{ [] > + return val == 0; > +} > + > +static int mtk_cg_bit_is_set(struct clk_hw *hw) > +{ [] > + return val != 0; > +} These functions may be better returning a bool > diff --git a/drivers/clk/mediatek/clk-mtk.c b/drivers/clk/mediatek/clk-mtk.c [] > +struct clk_onecell_data *mtk_alloc_clk_data(unsigned int clk_num) > +{ [] > + for (i = 0; i < clk_num; ++i) [] > +void mtk_clk_register_factors(const struct mtk_fixed_factor *clks, int num, > + struct clk_onecell_data *clk_data) > +{ > + for (i = 0; i < num; i++) { Please use consistent postfix ++ style -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/