2015-01-08 3:55 GMT+01:00 James Liao <jamesjj.liao@xxxxxxxxxxxx>: > Hi Matthias, > > On Wed, 2015-01-07 at 18:22 +0100, Matthias Brugger wrote: >> 2015-01-07 4:25 GMT+01:00 James Liao <jamesjj.liao@xxxxxxxxxxxx>: [...] >> > + >> > +extern spinlock_t *get_mtk_clk_lock(void); >> > + >> > +#define mtk_clk_lock(flags) spin_lock_irqsave(get_mtk_clk_lock(), flags) >> > +#define mtk_clk_unlock(flags) \ >> > + spin_unlock_irqrestore(get_mtk_clk_lock(), flags) >> >> Please use the spinlock directly without this akward defines. > > Do you mean we should export clk_ops_lock (from clk-mtk.c) directly > instead of get_mtk_clk_lock()? Or simply remove mtk_clk_lock/unlock()? > I think you should use spin_lock_irqsave(&clk_ops_lock, flags) instead of mtk_clk_lock. In any case I think you should define a spinlock in clk-mt8135.c and pass a reference of it in the init functions. See drivers/clk/berlin as a good example. Thanks, Matthias -- motzblog.wordpress.com -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html