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-sh73a0.c | |
parent | 14cc4e9578841a4c0025ce064133b2da53c9d1c9 (diff) | |
download | talos-op-linux-5a1cfafaeab5237523d43cd033e1fb42bf5c1933.tar.gz talos-op-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-sh73a0.c')
-rw-r--r-- | drivers/clk/shmobile/clk-sh73a0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/shmobile/clk-sh73a0.c b/drivers/clk/shmobile/clk-sh73a0.c index cd529cfe412f..8966f8bbfd72 100644 --- a/drivers/clk/shmobile/clk-sh73a0.c +++ b/drivers/clk/shmobile/clk-sh73a0.c @@ -9,12 +9,12 @@ */ #include <linux/clk-provider.h> -#include <linux/clkdev.h> #include <linux/clk/shmobile.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/of.h> #include <linux/of_address.h> +#include <linux/slab.h> #include <linux/spinlock.h> struct sh73a0_cpg { |