Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d53eb737 authored by Arun KS's avatar Arun KS Committed by paul
Browse files

OMAP1: clock: Typo fix for clock in omap1



Typo error when requesting for clock for dsp in omap1

Signed-off-by: default avatarArun KS <arunks@mistralsolutions.com>
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
parent 9e53dd71
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);