summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2015-06-19 22:00:46 (GMT)
committerStephen Boyd <sboyd@codeaurora.org>2015-07-20 18:11:30 (GMT)
commit3c37311730efec287b323e0928c9cf3737ab93e2 (patch)
tree13cbdd5c4aaed8a4f1670536131f9a8d0677f19f
parent5402494f9b13da6d4210489d544a01fa7dc9ee14 (diff)
downloadlinux-3c37311730efec287b323e0928c9cf3737ab93e2.tar.xz
clk: Include clk.h in clk.c
This file implements the clk API and so it should include clk.h directly instead of indirectly including it through clk-provider.h. Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r--drivers/clk/clk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index ddb4b54..89e531a 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -9,6 +9,7 @@
* Standard functionality for the common clock API. See Documentation/clk.txt
*/
+#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/clk/clk-conf.h>
#include <linux/module.h>