diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2008-08-08 16:34:10 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-08-09 08:51:40 -0400 |
commit | 631c9a8a79b9b94eef56afa3bff107ce27c4c2bb (patch) | |
tree | 4522afe32bbf5254e07ece5cc013f4147c70f911 /include/asm-arm | |
parent | af7a535688a758d15f06a98833e6a143b29af9de (diff) |
[ARM] S3C24XX: Compilation fix if s3c2410 is not selected
This patch fixes compilation error if no s3c2410 processor is selected
but the s3c244x is selected. The function s3c2410_baseclk_add() is now
available for all Samsung cpus.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
[ben-linux@fluff.org: Whitespace and description fixups]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/plat-s3c24xx/s3c2410.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/plat-s3c24xx/s3c2410.h b/include/asm-arm/plat-s3c24xx/s3c2410.h index 36de0b835873..3cd1ec677b3f 100644 --- a/include/asm-arm/plat-s3c24xx/s3c2410.h +++ b/include/asm-arm/plat-s3c24xx/s3c2410.h | |||
@@ -21,11 +21,11 @@ extern void s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no); | |||
21 | 21 | ||
22 | extern void s3c2410_init_clocks(int xtal); | 22 | extern void s3c2410_init_clocks(int xtal); |
23 | 23 | ||
24 | extern int s3c2410_baseclk_add(void); | ||
25 | |||
26 | #else | 24 | #else |
27 | #define s3c2410_init_clocks NULL | 25 | #define s3c2410_init_clocks NULL |
28 | #define s3c2410_init_uarts NULL | 26 | #define s3c2410_init_uarts NULL |
29 | #define s3c2410_map_io NULL | 27 | #define s3c2410_map_io NULL |
30 | #define s3c2410_init NULL | 28 | #define s3c2410_init NULL |
31 | #endif | 29 | #endif |
30 | |||
31 | extern int s3c2410_baseclk_add(void); | ||