Ben, > > +int clk_enable(struct clk *clk) > > +{ > > + if (clk->enable) > > + return clk->enable(clk); > > + return 0; > > +} > > +EXPORT_SYMBOL(clk_enable); > > .../... > > All those guys look like good candidates to be inlined :-) Good point, will inline these. Cheers, Jeremy