diff options
author | Sergey Ryazanov <ryazanov.s.a@gmail.com> | 2014-08-14 02:09:35 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-08-26 02:18:52 +0200 |
commit | d610c7ee402a07687a9644ab688fbb9e10c03672 (patch) | |
tree | 09827d747de7ec85931ceda7a36a22dab61d800f /arch/mips | |
parent | 7b626d93453903e36cbc0189f4cbf7b195e2c037 (diff) | |
download | linux-stable-d610c7ee402a07687a9644ab688fbb9e10c03672.tar.gz linux-stable-d610c7ee402a07687a9644ab688fbb9e10c03672.tar.bz2 linux-stable-d610c7ee402a07687a9644ab688fbb9e10c03672.zip |
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/mips')
-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 941744aabb51..f914c753de21 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; |