diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-04-29 18:34:42 -0300 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2015-06-03 14:49:34 +0800 |
commit | a39973a4fdad7be1edaf276334b3a1907fe31025 (patch) | |
tree | c7818be6c06dc9efca55dccd442a42de55141f99 | |
parent | 65d0a16dce3c2564b21c13d8492af48959a3c3c3 (diff) |
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 <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
-rw-r--r-- | drivers/clk/imx/clk-cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-cpu.c b/drivers/clk/imx/clk-cpu.c index aa1c345e2a19..9d46eac87f45 100644 --- a/drivers/clk/imx/clk-cpu.c +++ b/drivers/clk/imx/clk-cpu.c @@ -12,6 +12,7 @@ #include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/slab.h> +#include "clk.h" struct clk_cpu { struct clk_hw hw; |