diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-20 21:32:42 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-20 22:02:31 -0500 |
commit | 5086c6c882a392d2f48704c0a03e17bdcbf01e8f (patch) | |
tree | 0cce38da18cf46e6a0bf7d0e27dffcdbf18a4781 /arch/arm/mach-s3c64xx | |
parent | 4cfb7b7ce53bff8574ca152f433ab7fad62f1cad (diff) |
ARM: S3C64XX: use static declaration when it is not used in other files
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c64xx')
-rw-r--r-- | arch/arm/mach-s3c64xx/common.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c64xx/common.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c64xx/irq-pm.c | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-s3c64xx/common.c b/arch/arm/mach-s3c64xx/common.c index 4a7394d4bd9e..bee7dcd4df7c 100644 --- a/arch/arm/mach-s3c64xx/common.c +++ b/arch/arm/mach-s3c64xx/common.c | |||
@@ -49,7 +49,7 @@ | |||
49 | 49 | ||
50 | /* uart registration process */ | 50 | /* uart registration process */ |
51 | 51 | ||
52 | void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no) | 52 | static void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no) |
53 | { | 53 | { |
54 | s3c24xx_init_uartdevs("s3c6400-uart", s3c64xx_uart_resources, cfg, no); | 54 | s3c24xx_init_uartdevs("s3c6400-uart", s3c64xx_uart_resources, cfg, no); |
55 | } | 55 | } |
diff --git a/arch/arm/mach-s3c64xx/common.h b/arch/arm/mach-s3c64xx/common.h index 5eb9c9a7d73b..7a10be629aba 100644 --- a/arch/arm/mach-s3c64xx/common.h +++ b/arch/arm/mach-s3c64xx/common.h | |||
@@ -25,8 +25,6 @@ void s3c64xx_setup_clocks(void); | |||
25 | 25 | ||
26 | void s3c64xx_restart(char mode, const char *cmd); | 26 | void s3c64xx_restart(char mode, const char *cmd); |
27 | 27 | ||
28 | extern struct syscore_ops s3c64xx_irq_syscore_ops; | ||
29 | |||
30 | #ifdef CONFIG_CPU_S3C6400 | 28 | #ifdef CONFIG_CPU_S3C6400 |
31 | 29 | ||
32 | extern int s3c6400_init(void); | 30 | extern int s3c6400_init(void); |
diff --git a/arch/arm/mach-s3c64xx/irq-pm.c b/arch/arm/mach-s3c64xx/irq-pm.c index 8bec61e242c7..0c7e1d960ca4 100644 --- a/arch/arm/mach-s3c64xx/irq-pm.c +++ b/arch/arm/mach-s3c64xx/irq-pm.c | |||
@@ -96,7 +96,7 @@ static void s3c64xx_irq_pm_resume(void) | |||
96 | S3C_PMDBG("%s: IRQ configuration restored\n", __func__); | 96 | S3C_PMDBG("%s: IRQ configuration restored\n", __func__); |
97 | } | 97 | } |
98 | 98 | ||
99 | struct syscore_ops s3c64xx_irq_syscore_ops = { | 99 | static struct syscore_ops s3c64xx_irq_syscore_ops = { |
100 | .suspend = s3c64xx_irq_pm_suspend, | 100 | .suspend = s3c64xx_irq_pm_suspend, |
101 | .resume = s3c64xx_irq_pm_resume, | 101 | .resume = s3c64xx_irq_pm_resume, |
102 | }; | 102 | }; |