From 34d5257cf96875672fda43e51bb6d5dcfbfac50a Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Wed, 29 Apr 2015 18:34:42 -0300 Subject: [PATCH] clk: imx: clk-cpu: Include "clk.h" header file Include the "clk.h" header file to fix the following sparse warning: drivers/clk/imx/clk-cpu.c:77:12: warning: symbol 'imx_clk_cpu' was not declared. Should it be static? Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo --- drivers/clk/imx/clk-cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/imx/clk-cpu.c b/drivers/clk/imx/clk-cpu.c index aa1c345e2a191..9d46eac87f45e 100644 --- a/drivers/clk/imx/clk-cpu.c +++ b/drivers/clk/imx/clk-cpu.c @@ -12,6 +12,7 @@ #include #include #include +#include "clk.h" struct clk_cpu { struct clk_hw hw; -- 2.39.5