mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
ARM: S3C64XX: use static declaration when it is not used in other files
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
4cfb7b7ce5
commit
5086c6c882
@ -49,7 +49,7 @@
|
||||
|
||||
/* uart registration process */
|
||||
|
||||
void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no)
|
||||
static void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no)
|
||||
{
|
||||
s3c24xx_init_uartdevs("s3c6400-uart", s3c64xx_uart_resources, cfg, no);
|
||||
}
|
||||
|
@ -25,8 +25,6 @@ void s3c64xx_setup_clocks(void);
|
||||
|
||||
void s3c64xx_restart(char mode, const char *cmd);
|
||||
|
||||
extern struct syscore_ops s3c64xx_irq_syscore_ops;
|
||||
|
||||
#ifdef CONFIG_CPU_S3C6400
|
||||
|
||||
extern int s3c6400_init(void);
|
||||
|
@ -96,7 +96,7 @@ static void s3c64xx_irq_pm_resume(void)
|
||||
S3C_PMDBG("%s: IRQ configuration restored\n", __func__);
|
||||
}
|
||||
|
||||
struct syscore_ops s3c64xx_irq_syscore_ops = {
|
||||
static struct syscore_ops s3c64xx_irq_syscore_ops = {
|
||||
.suspend = s3c64xx_irq_pm_suspend,
|
||||
.resume = s3c64xx_irq_pm_resume,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user