diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2010-01-11 17:22:23 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-02-04 22:30:09 +0100 |
commit | 08aca087f263e8089420b2723fe0c1a0cbe5de0c (patch) | |
tree | e63f7d29d5f06e3eb4c1cc29f790b174105b8afb /arch/arm/mach-davinci/dm365.c | |
parent | DaVinci: DM365: Voice codec support for the DM365 SoC (diff) | |
download | linux-08aca087f263e8089420b2723fe0c1a0cbe5de0c.tar.xz linux-08aca087f263e8089420b2723fe0c1a0cbe5de0c.zip |
davinci: clkdev cleanup: remove clk_lookup wrapper, use clkdev_add_table()
Remove unneeded 'struct davinci_clk' wrapper around 'struct clk_lookup'
and use clkdev_add_table() to add the list of clocks in one go.
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm365.c')
-rw-r--r-- | arch/arm/mach-davinci/dm365.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm365.c b/arch/arm/mach-davinci/dm365.c index d5010567b496..e88f2624df68 100644 --- a/arch/arm/mach-davinci/dm365.c +++ b/arch/arm/mach-davinci/dm365.c @@ -403,7 +403,7 @@ static struct clk mjcp_clk = { .lpsc = DM365_LPSC_MJCP, }; -static struct davinci_clk dm365_clks[] = { +static struct clk_lookup dm365_clks[] = { CLK(NULL, "ref", &ref_clk), CLK(NULL, "pll1", &pll1_clk), CLK(NULL, "pll1_aux", &pll1_aux_clk), |