summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Boyd2015-06-20 00:00:46 +0200
committerStephen Boyd2015-07-20 19:53:10 +0200
commitc0eb1dfffc74d34277116842001e7677787c04cf (patch)
tree76f99cb780e959f5f2b37eab28729f26c83d4110
parentclk: mediatek: Properly include clk.h (diff)
downloadkernel-qcow2-linux-c0eb1dfffc74d34277116842001e7677787c04cf.tar.gz
kernel-qcow2-linux-c0eb1dfffc74d34277116842001e7677787c04cf.tar.xz
kernel-qcow2-linux-c0eb1dfffc74d34277116842001e7677787c04cf.zip
clk: meson8b: Properly include clk.h
Clock provider drivers generally shouldn't include clk.h because it's the consumer API. Only include clk.h if it's actually used. Cc: Carlo Caione <carlo@endlessm.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r--drivers/clk/meson/clk-cpu.c1
-rw-r--r--drivers/clk/meson/clkc.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/meson/clk-cpu.c b/drivers/clk/meson/clk-cpu.c
index 71ad493b94df..f7c30ea54ca8 100644
--- a/drivers/clk/meson/clk-cpu.c
+++ b/drivers/clk/meson/clk-cpu.c
@@ -35,6 +35,7 @@
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/slab.h>
+#include <linux/clk.h>
#include <linux/clk-provider.h>
#define MESON_CPU_CLK_CNTL1 0x00
diff --git a/drivers/clk/meson/clkc.c b/drivers/clk/meson/clkc.c
index b8c511c5e7a7..c83ae1367abc 100644
--- a/drivers/clk/meson/clkc.c
+++ b/drivers/clk/meson/clkc.c
@@ -15,7 +15,6 @@
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/mfd/syscon.h>
#include <linux/slab.h>