#ifdef MCFPM_PPMCR0 /* * For more advanced ColdFire parts that have clocks that can be enabled * we supply enable/disable functions. These must properly define their * clocks in their platform specific code.
*/ void __clk_init_enabled(struct clk *clk)
{
clk->enabled = 1;
clk->clk_ops->enable(clk);
}
unsignedlong clk_get_rate(struct clk *clk)
{ if (!clk) return 0;
return clk->rate;
}
EXPORT_SYMBOL(clk_get_rate);
/* dummy functions, should not be called */ long clk_round_rate(struct clk *clk, unsignedlong rate)
{
WARN_ON(clk); return 0;
}
EXPORT_SYMBOL(clk_round_rate);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.