diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-07-01 20:39:19 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-11-08 22:35:48 +0100 |
commit | 1425df87c25b15400c9f26d57821bcfe01286b2a (patch) | |
tree | 845f69013de5ebb1b9ebfe4746c096664a505567 /arch/m68k/apollo | |
parent | edb347256c44366888debb4f9e8477ac700a9026 (diff) | |
download | linux-stable-1425df87c25b15400c9f26d57821bcfe01286b2a.tar.gz linux-stable-1425df87c25b15400c9f26d57821bcfe01286b2a.tar.bz2 linux-stable-1425df87c25b15400c9f26d57821bcfe01286b2a.zip |
m68k/irq: Rename {,__}m68k_handle_int()
- Rename m68k_handle_int() to generic_handle_irq(), and drop the unneeded
asmlinkage,
- Rename __m68k_handle_int() to do_IRQ().
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/apollo')
-rw-r--r-- | arch/m68k/apollo/dn_ints.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/apollo/dn_ints.c b/arch/m68k/apollo/dn_ints.c index bdc44282fdba..4b764312aed0 100644 --- a/arch/m68k/apollo/dn_ints.c +++ b/arch/m68k/apollo/dn_ints.c @@ -6,7 +6,7 @@ void dn_process_int(unsigned int irq, struct pt_regs *fp) { - __m68k_handle_int(irq, fp); + do_IRQ(irq, fp); *(volatile unsigned char *)(pica)=0x20; *(volatile unsigned char *)(picb)=0x20; |