diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-06-19 15:00:46 -0700 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-07-20 11:11:30 -0700 |
commit | 3c37311730efec287b323e0928c9cf3737ab93e2 (patch) | |
tree | 13cbdd5c4aaed8a4f1670536131f9a8d0677f19f /drivers/clk/clk.c | |
parent | 5402494f9b13da6d4210489d544a01fa7dc9ee14 (diff) | |
download | linux-3c37311730efec287b323e0928c9cf3737ab93e2.tar.bz2 |
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>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 1 |
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> |