diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-06-23 15:09:27 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-07-28 11:58:44 -0700 |
commit | 5a1cfafaeab5237523d43cd033e1fb42bf5c1933 (patch) | |
tree | 7ed9416f54bef06e8fdd655d6f2f36a770092afb /drivers/clk/shmobile/clk-div6.c | |
parent | 14cc4e9578841a4c0025ce064133b2da53c9d1c9 (diff) | |
download | talos-obmc-linux-5a1cfafaeab5237523d43cd033e1fb42bf5c1933.tar.gz talos-obmc-linux-5a1cfafaeab5237523d43cd033e1fb42bf5c1933.zip |
clk: shmobile: Remove unneeded #include <linux/clkdev.h>
The CCF implementations for the various shmobile SoCs don't use clkdev
functionality, hence drop the inclusion of <linux/clkdev.h>.
Add the missing #include <linux/slab.h>, which was included implicitly
through <asm/clkdev.h> before.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/shmobile/clk-div6.c')
-rw-r--r-- | drivers/clk/shmobile/clk-div6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/shmobile/clk-div6.c b/drivers/clk/shmobile/clk-div6.c index 036a692c7219..6810bfb6ef5e 100644 --- a/drivers/clk/shmobile/clk-div6.c +++ b/drivers/clk/shmobile/clk-div6.c @@ -11,12 +11,12 @@ */ #include <linux/clk-provider.h> -#include <linux/clkdev.h> #include <linux/init.h> #include <linux/io.h> #include <linux/kernel.h> #include <linux/of.h> #include <linux/of_address.h> +#include <linux/slab.h> #define CPG_DIV6_CKSTP BIT(8) #define CPG_DIV6_DIV(d) ((d) & 0x3f) |