mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 14:17:43 +00:00
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>
This commit is contained in:
parent
cbc44dbe1f
commit
ccb6e984a1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue