1
0
Fork 0

cpts: fix a run time warn_on.

This patch fixes a warning in clk_enable by calling clk_prepare_enable
instead.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Richard Cochran 2012-12-23 21:19:10 +00:00 committed by David S. Miller
parent cbc44dbe1f
commit ccb6e984a1
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ static void cpts_clk_init(struct cpts *cpts)
cpts->refclk = NULL;
return;
}
clk_enable(cpts->refclk);
clk_prepare_enable(cpts->refclk);
}
static void cpts_clk_release(struct cpts *cpts)