summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2010-09-20 06:33:49 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2010-09-20 06:33:49 +0000
commit3e3ff0cf0db089f1bc7cf6089dc74b51d0a3af70 (patch)
treefdd209a91e26cb3cbc1a90545f99b5db0880c7ce /sys/arch/mvme68k
parentee9bd637e0295eeb7dfd37b2f3810841cbd814f7 (diff)
Get rid of evcount's support for arranging counters in a tree
hierarchy. Everything attached to a single root node anyway, so at best we had a bush. "i think it is good" deraadt@
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r--sys/arch/mvme68k/mvme68k/trap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/mvme68k/trap.c b/sys/arch/mvme68k/mvme68k/trap.c
index 7801d574e3b..64288da48d8 100644
--- a/sys/arch/mvme68k/mvme68k/trap.c
+++ b/sys/arch/mvme68k/mvme68k/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.70 2010/07/02 19:57:14 tedu Exp $ */
+/* $OpenBSD: trap.c,v 1.71 2010/09/20 06:33:47 matthew Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -1101,7 +1101,7 @@ intr_establish(vec, ih, name)
}
}
- evcount_attach(&ih->ih_count, name, &ih->ih_ipl, &evcount_intr);
+ evcount_attach(&ih->ih_count, name, &ih->ih_ipl);
SLIST_INSERT_HEAD(list, ih, ih_link);
return (0);
}