]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cpts: fix a run time warn_on.
authorRichard Cochran <richardcochran@gmail.com>
Sun, 23 Dec 2012 21:19:10 +0000 (21:19 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 26 Dec 2012 22:15:09 +0000 (14:15 -0800)
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>
drivers/net/ethernet/ti/cpts.c

index 5ab8fb4037faebbb501f82761860dba91f09325f..463597f919f132b48a238672001e60c36d830459 100644 (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)