diff options
author | Sergey Ryazanov <ryazanov.s.a@gmail.com> | 2014-08-13 22:09:35 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-08-19 11:30:45 (GMT) |
commit | b3804d8da18f4649c3fb1755078312cdf8f40ffc (patch) | |
tree | 9cd0f18ea94d51d19f823f2211bc5be7c2a96c47 /arch | |
parent | f28ff3d1ead40515c14ee841dc8b801c7d64353b (diff) | |
download | linux-b3804d8da18f4649c3fb1755078312cdf8f40ffc.tar.xz |
MIPS: MSP71xx: remove unused plat_irq_dispatch() argument
Remove unused argument to make the plat_irq_dispatch() function
declaration similar to the realization of other platforms.
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/7538/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/pmcs-msp71xx/msp_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pmcs-msp71xx/msp_irq.c b/arch/mips/pmcs-msp71xx/msp_irq.c index 941744a..f914c75 100644 --- a/arch/mips/pmcs-msp71xx/msp_irq.c +++ b/arch/mips/pmcs-msp71xx/msp_irq.c @@ -51,7 +51,7 @@ static inline void sec_int_dispatch(void) { do_IRQ(MSP_INT_SEC); } * the range 40-71. */ -asmlinkage void plat_irq_dispatch(struct pt_regs *regs) +asmlinkage void plat_irq_dispatch(void) { u32 pending; |