summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Boyd2015-06-20 00:00:46 +0200
committerStephen Boyd2015-07-20 20:11:30 +0200
commit3c37311730efec287b323e0928c9cf3737ab93e2 (patch)
tree13cbdd5c4aaed8a4f1670536131f9a8d0677f19f
parentclk: zynq: Include clk.h (diff)
downloadkernel-qcow2-linux-3c37311730efec287b323e0928c9cf3737ab93e2.tar.gz
kernel-qcow2-linux-3c37311730efec287b323e0928c9cf3737ab93e2.tar.xz
kernel-qcow2-linux-3c37311730efec287b323e0928c9cf3737ab93e2.zip
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 ddb4b541016f..89e531a3f384 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>