summaryrefslogtreecommitdiffstats
path: root/arch/m68k/amiga/amiints.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
commit27cfca1ec98e91261b1a5355d10a8996464b63af (patch)
tree8e895a53e372fa682b4c0a585b9377d67ed70d0e /arch/m68k/amiga/amiints.c
parent6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff)
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too o Upgrade to 2.1.89. Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'arch/m68k/amiga/amiints.c')
-rw-r--r--arch/m68k/amiga/amiints.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/amiga/amiints.c b/arch/m68k/amiga/amiints.c
index 9df5083c1..b7110188c 100644
--- a/arch/m68k/amiga/amiints.c
+++ b/arch/m68k/amiga/amiints.c
@@ -331,7 +331,7 @@ void amiga_disable_irq(unsigned int irq)
inline void amiga_do_irq(int irq, struct pt_regs *fp)
{
- kstat.interrupts[SYS_IRQS + irq]++;
+ kstat.irqs[0][SYS_IRQS + irq]++;
ami_irq_list[irq]->handler(irq, ami_irq_list[irq]->dev_id, fp);
}
@@ -340,7 +340,7 @@ void amiga_do_irq_list(int irq, struct pt_regs *fp, struct irq_server *server)
irq_node_t *node, *slow_nodes;
unsigned short flags;
- kstat.interrupts[SYS_IRQS + irq]++;
+ kstat.irqs[0][SYS_IRQS + irq]++;
if (server->count++)
server->reentrance = 1;
/* serve first fast and normal handlers */
@@ -489,7 +489,7 @@ int amiga_get_irq_list(char *buf)
if (node->flags & IRQ_FLG_STD)
continue;
len += sprintf(buf+len, "ami %2d: %10u ", i,
- kstat.interrupts[SYS_IRQS + i]);
+ kstat.irqs[0][SYS_IRQS + i]);
do {
if (ami_servers[i]) {
if (node->flags & IRQ_FLG_FAST)