diff options
author | Ben Dooks <ben-linux@fluff.org> | 2006-12-17 14:59:37 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-12-17 18:37:58 -0500 |
commit | 7ae9e420de165c2a992d116002d05655138d8f24 (patch) | |
tree | b77ac168a3b5f01b0ec6c33e347021ec2e42db3c /arch/arm/mach-s3c2410/s3c2410-clock.c | |
parent | 58d19d6ea608077e83c30e58ae1494246b1f6b82 (diff) |
[ARM] 4046/1: S3C24XX: fix sparse errors arch/arm/mach-s3c2410
Fix the following sparse errors in arch/arm/mach-s3c2410
by fixing the include paths and making un-exported items
static.
s3c2410-clock.c:206:12: warning: symbol 's3c2410_baseclk_add' was not declared. Should it be static?
s3c2412-clock.c:559:17: warning: symbol 'clks_src' was not declared. Should it be static?
s3c2412-clock.c:622:12: warning: symbol 'clks' was not declared. Should it be static?
s3c2412-clock.c:630:12: warning: symbol 's3c2412_baseclk_add' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/s3c2410-clock.c')
-rw-r--r-- | arch/arm/mach-s3c2410/s3c2410-clock.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/s3c2410-clock.c b/arch/arm/mach-s3c2410/s3c2410-clock.c index 00abe199a08e..5815aa0f1463 100644 --- a/arch/arm/mach-s3c2410/s3c2410-clock.c +++ b/arch/arm/mach-s3c2410/s3c2410-clock.c | |||
@@ -31,12 +31,16 @@ | |||
31 | #include <linux/mutex.h> | 31 | #include <linux/mutex.h> |
32 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
33 | 33 | ||
34 | #include <asm/mach/map.h> | ||
35 | |||
34 | #include <asm/hardware.h> | 36 | #include <asm/hardware.h> |
35 | #include <asm/io.h> | 37 | #include <asm/io.h> |
36 | 38 | ||
39 | #include <asm/arch/regs-serial.h> | ||
37 | #include <asm/arch/regs-clock.h> | 40 | #include <asm/arch/regs-clock.h> |
38 | #include <asm/arch/regs-gpio.h> | 41 | #include <asm/arch/regs-gpio.h> |
39 | 42 | ||
43 | #include "s3c2410.h" | ||
40 | #include "clock.h" | 44 | #include "clock.h" |
41 | #include "cpu.h" | 45 | #include "cpu.h" |
42 | 46 | ||