2 * OMAP4-specific clock framework functions
4 * Copyright (C) 2009 Texas Instruments, Inc.
6 * Rajendra Nayak (rnayak@ti.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/errno.h>
16 struct clk_functions omap2_clk_functions
= {
17 .clk_enable
= omap2_clk_enable
,
18 .clk_disable
= omap2_clk_disable
,
19 .clk_round_rate
= omap2_clk_round_rate
,
20 .clk_set_rate
= omap2_clk_set_rate
,
21 .clk_set_parent
= omap2_clk_set_parent
,
22 .clk_disable_unused
= omap2_clk_disable_unused
,
25 const struct clkops clkops_noncore_dpll_ops
= {
26 .enable
= &omap3_noncore_dpll_enable
,
27 .disable
= &omap3_noncore_dpll_disable
,
30 void omap2_clk_prepare_for_reboot(void)