diff options
author | Sergey Ryazanov <ryazanov.s.a@gmail.com> | 2014-10-28 19:18:41 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-24 01:45:27 -0500 |
commit | 1753e74ed8fa3235174d5baa3421cbf8d693a42d (patch) | |
tree | bb6b196bb76d05dfb2be056218643ed2c0513baa /arch/mips/ath25/ar5312.h | |
parent | ba910345034aea52d292bdc26b9c6831ab7b54e8 (diff) |
MIPS: ath25: add interrupts handling routines
Add interrupts initialization and handling routines, also add AHB bus
error interrupt handlers for both SoCs families.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Cc: Linux MIPS <linux-mips@linux-mips.org>
Patchwork: https://patchwork.linux-mips.org/patch/8240/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/ath25/ar5312.h')
-rw-r--r-- | arch/mips/ath25/ar5312.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/ath25/ar5312.h b/arch/mips/ath25/ar5312.h index 9e1e56e24eed..254f04f371b5 100644 --- a/arch/mips/ath25/ar5312.h +++ b/arch/mips/ath25/ar5312.h | |||
@@ -3,11 +3,13 @@ | |||
3 | 3 | ||
4 | #ifdef CONFIG_SOC_AR5312 | 4 | #ifdef CONFIG_SOC_AR5312 |
5 | 5 | ||
6 | void ar5312_arch_init_irq(void); | ||
6 | void ar5312_plat_time_init(void); | 7 | void ar5312_plat_time_init(void); |
7 | void ar5312_plat_mem_setup(void); | 8 | void ar5312_plat_mem_setup(void); |
8 | 9 | ||
9 | #else | 10 | #else |
10 | 11 | ||
12 | static inline void ar5312_arch_init_irq(void) {} | ||
11 | static inline void ar5312_plat_time_init(void) {} | 13 | static inline void ar5312_plat_time_init(void) {} |
12 | static inline void ar5312_plat_mem_setup(void) {} | 14 | static inline void ar5312_plat_mem_setup(void) {} |
13 | 15 | ||