summaryrefslogtreecommitdiffstats
path: root/arch/arm/common/clkdev.c
diff options
context:
space:
mode:
authorHartley Sweeten2009-08-05 00:38:06 +0200
committerRussell King2009-08-05 23:06:58 +0200
commitc0c60c4b9ab45bb02b20796401dd6a90770fd0ee (patch)
tree4ef7291b0ee1eda8d50f7a5d7e58d418e8226e6b /arch/arm/common/clkdev.c
parentARM: 5638/1: arch/arm/kernel/signal.c: use correct address space for CRUNCH (diff)
downloadkernel-qcow2-linux-c0c60c4b9ab45bb02b20796401dd6a90770fd0ee.tar.gz
kernel-qcow2-linux-c0c60c4b9ab45bb02b20796401dd6a90770fd0ee.tar.xz
kernel-qcow2-linux-c0c60c4b9ab45bb02b20796401dd6a90770fd0ee.zip
ARM: 5639/1: arm: clkdev.c should include <linux/clk.h>
<linux/clk.h> should be included to get the base API prototypes. This fixes the following sparse warnings: arch/arm/common/clkdev.c:65:12: warning: symbol 'clk_get_sys' was not declared. Should it be static? arch/arm/common/clkdev.c:79:12: warning: symbol 'clk_get' was not declared. Should it be static? arch/arm/common/clkdev.c:87:6: warning: symbol 'clk_put' was not declared. Should it be static? Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/common/clkdev.c')
-rw-r--r--arch/arm/common/clkdev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/common/clkdev.c b/arch/arm/common/clkdev.c
index f37afd9422f3..aae5bc01acc8 100644
--- a/arch/arm/common/clkdev.c
+++ b/arch/arm/common/clkdev.c
@@ -17,6 +17,7 @@
#include <linux/err.h>
#include <linux/string.h>
#include <linux/mutex.h>
+#include <linux/clk.h>
#include <asm/clkdev.h>
#include <mach/clkdev.h>