diff options
author | Arun KS <arunks@mistralsolutions.com> | 2009-04-24 07:11:07 +0400 |
---|---|---|
committer | paul <paul@twilight.(none)> | 2009-04-24 07:11:07 +0400 |
commit | d53eb73795c55101453ea6ca4f486ea2ff7b0496 (patch) | |
tree | 8da38b0ba66213e8a5e4d4aa778758e974f72333 /arch/arm/mach-omap1 | |
parent | 9e53dd7180a1fd59a785dbfb9c633f01c96c388f (diff) | |
download | linux-d53eb73795c55101453ea6ca4f486ea2ff7b0496.tar.xz |
OMAP1: clock: Typo fix for clock in omap1
Typo error when requesting for clock for dsp in omap1
Signed-off-by: Arun KS <arunks@mistralsolutions.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/mcbsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap1/mcbsp.c b/arch/arm/mach-omap1/mcbsp.c index d040c3f1027f..a2d7814896be 100644 --- a/arch/arm/mach-omap1/mcbsp.c +++ b/arch/arm/mach-omap1/mcbsp.c @@ -40,8 +40,8 @@ static void omap1_mcbsp_request(unsigned int id) */ if (id == OMAP_MCBSP1 || id == OMAP_MCBSP3) { if (dsp_use++ == 0) { - api_clk = clk_get(NULL, "api_clk"); - dsp_clk = clk_get(NULL, "dsp_clk"); + api_clk = clk_get(NULL, "api_ck"); + dsp_clk = clk_get(NULL, "dsp_ck"); if (!IS_ERR(api_clk) && !IS_ERR(dsp_clk)) { clk_enable(api_clk); clk_enable(dsp_clk); |