mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 13:46:24 +00:00
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>
This commit is contained in:
parent
9e53dd7180
commit
d53eb73795
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ static void omap1_mcbsp_request(unsigned int id)
|
||||||
*/
|
*/
|
||||||
if (id == OMAP_MCBSP1 || id == OMAP_MCBSP3) {
|
if (id == OMAP_MCBSP1 || id == OMAP_MCBSP3) {
|
||||||
if (dsp_use++ == 0) {
|
if (dsp_use++ == 0) {
|
||||||
api_clk = clk_get(NULL, "api_clk");
|
api_clk = clk_get(NULL, "api_ck");
|
||||||
dsp_clk = clk_get(NULL, "dsp_clk");
|
dsp_clk = clk_get(NULL, "dsp_ck");
|
||||||
if (!IS_ERR(api_clk) && !IS_ERR(dsp_clk)) {
|
if (!IS_ERR(api_clk) && !IS_ERR(dsp_clk)) {
|
||||||
clk_enable(api_clk);
|
clk_enable(api_clk);
|
||||||
clk_enable(dsp_clk);
|
clk_enable(dsp_clk);
|
||||||
|
|
Loading…
Reference in a new issue