* upon allocation failure; otherwise, passes along the return value
* of blocking_notifier_chain_register().
*/
-int rk30_clk_notifier_register(struct clk *clk, struct notifier_block *nb)
+int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
{
struct clk_notifier *cn = NULL, *cn_new = NULL;
int r;
return r;
}
-EXPORT_SYMBOL(rk30_clk_notifier_register);
+EXPORT_SYMBOL(clk_notifier_register);
/**
* clk_notifier_unregister - remove a clock change notifier
* Returns -EINVAL if called with null arguments; otherwise, passes
* along the return value of blocking_notifier_chain_unregister().
*/
-int rk30_clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
+int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
{
struct clk_notifier *cn = NULL;
struct clk *clkp;
return r;
}
-EXPORT_SYMBOL(rk30_clk_notifier_unregister);
+EXPORT_SYMBOL(clk_notifier_unregister);
static struct clk_dump_ops *dump_def_ops;