ar2315.h 430 字节
Newer Older
1 2 3 4 5
#ifndef __AR2315_H
#define __AR2315_H

#ifdef CONFIG_SOC_AR2315

6
void ar2315_arch_init_irq(void);
7 8
void ar2315_plat_time_init(void);
void ar2315_plat_mem_setup(void);
S
Sergey Ryazanov 已提交
9
void ar2315_arch_init(void);
10 11 12

#else

13
static inline void ar2315_arch_init_irq(void) {}
14 15
static inline void ar2315_plat_time_init(void) {}
static inline void ar2315_plat_mem_setup(void) {}
S
Sergey Ryazanov 已提交
16
static inline void ar2315_arch_init(void) {}
17 18 19 20

#endif

#endif	/* __AR2315_H */