diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-06-20 00:00:46 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-07-20 20:11:20 +0200 |
commit | 6d31e3b22e131f5aa5c9d6407ea46fec2134f986 (patch) | |
tree | 93d121bcdd43ccf2602127871d5b60d6b3c895e2 /drivers/clk/versatile/clk-versatile.c | |
parent | clk: ux500: Remove clk.h and clkdev.h includes (diff) | |
download | linux-6d31e3b22e131f5aa5c9d6407ea46fec2134f986.tar.xz linux-6d31e3b22e131f5aa5c9d6407ea46fec2134f986.zip |
clk: versatile: 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 and replace them with slab.h in files that were relying on the
implicit include of slab.h in clkdev.h.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/versatile/clk-versatile.c')
-rw-r--r-- | drivers/clk/versatile/clk-versatile.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/clk/versatile/clk-versatile.c b/drivers/clk/versatile/clk-versatile.c index 7a4f8635bd1e..71fa5da89afd 100644 --- a/drivers/clk/versatile/clk-versatile.c +++ b/drivers/clk/versatile/clk-versatile.c @@ -8,8 +8,6 @@ * published by the Free Software Foundation. */ #include <linux/clk-provider.h> -#include <linux/clk.h> -#include <linux/clkdev.h> #include <linux/err.h> #include <linux/of.h> #include <linux/of_address.h> |