mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
Blackfin arch: add __init markings to Blackfin timer init functions
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
71f5ca35d5
commit
a1ee74ca09
@ -32,7 +32,7 @@ static struct irqaction bfin_timer_irq = {
|
||||
};
|
||||
|
||||
#ifdef CONFIG_TICK_SOURCE_SYSTMR0
|
||||
void setup_system_timer0(void)
|
||||
void __init setup_system_timer0(void)
|
||||
{
|
||||
/* Power down the core timer, just to play safe. */
|
||||
bfin_write_TCNTL(0);
|
||||
@ -49,7 +49,7 @@ void setup_system_timer0(void)
|
||||
enable_gptimers(TIMER0bit);
|
||||
}
|
||||
#else
|
||||
void setup_core_timer(void)
|
||||
void __init setup_core_timer(void)
|
||||
{
|
||||
u32 tcount;
|
||||
|
||||
@ -71,7 +71,7 @@ void setup_core_timer(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
static void __init
|
||||
time_sched_init(irqreturn_t(*timer_routine) (int, void *))
|
||||
{
|
||||
#ifdef CONFIG_TICK_SOURCE_SYSTMR0
|
||||
|
Loading…
Reference in New Issue
Block a user