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:18 -0700 |
commit | a162ca912cf792073b0b2450377fd1cd5d5c6cb5 (patch) | |
tree | 876a3c617e145b238e8d80ba0a0b4d61225a2f0b /drivers/clk/ux500/clk.h | |
parent | 584ac4e935a1f905d67c8fa3fbe8e32d384721f1 (diff) | |
download | talos-op-linux-a162ca912cf792073b0b2450377fd1cd5d5c6cb5.tar.gz talos-op-linux-a162ca912cf792073b0b2450377fd1cd5d5c6cb5.zip |
clk: ux500: Remove clk.h and clkdev.h includes
Clock provider drivers generally shouldn't include clk.h because
it's the consumer API. Remove the include here because this is a
provider driver. Also remove clkdev.h in files that aren't using
it.
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/ux500/clk.h')
-rw-r--r-- | drivers/clk/ux500/clk.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/ux500/clk.h b/drivers/clk/ux500/clk.h index a2bb92d85ee0..b42485da704e 100644 --- a/drivers/clk/ux500/clk.h +++ b/drivers/clk/ux500/clk.h @@ -10,10 +10,11 @@ #ifndef __UX500_CLK_H #define __UX500_CLK_H -#include <linux/clk.h> #include <linux/device.h> #include <linux/types.h> +struct clk; + struct clk *clk_reg_prcc_pclk(const char *name, const char *parent_name, resource_size_t phy_base, |