summaryrefslogtreecommitdiff
path: root/sys/arch/mips64
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2005-06-07 02:29:31 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2005-06-07 02:29:31 +0000
commitd611c626dcfedc32389bf4cef66844f3bbe7f411 (patch)
tree1efb403cf0c67e581b8516f82d3913eb7a47b427 /sys/arch/mips64
parent525b8b85bcee548192ba13483c300604e68c6fbd (diff)
CCITT about to bite the dust, remove special casing in archs and drivers
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r--sys/arch/mips64/mips64/interrupt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/mips64/interrupt.c b/sys/arch/mips64/mips64/interrupt.c
index bbd56eccfef..9ec488eb381 100644
--- a/sys/arch/mips64/mips64/interrupt.c
+++ b/sys/arch/mips64/mips64/interrupt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: interrupt.c,v 1.14 2005/05/30 12:51:13 art Exp $ */
+/* $OpenBSD: interrupt.c,v 1.15 2005/06/07 02:29:30 henning Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -205,7 +205,7 @@ printf("Unhandled interrupt %x:%x\n", cause, pending);
softclock();
}
#if defined(INET) || defined(INET6) || defined(NETATALK) || defined(IMP) || \
- defined(IPX) || defined(NS) || defined(CCITT) || NATM > 0 || \
+ defined(IPX) || defined(NS) || NATM > 0 || \
NPPP > 0 || NBRIDGE > 0
if ((ipending & SINT_NETMASK) & ~xcpl) {
extern int netisr;
@@ -514,7 +514,7 @@ generic_do_pending_int(int newcpl)
softclock();
}
#if defined(INET) || defined(INET6) || defined(NETATALK) || defined(IMP) || \
- defined(IPX) || defined(NS) || defined(CCITT) || NATM > 0 || \
+ defined(IPX) || defined(NS) || NATM > 0 || \
NPPP > 0 || NBRIDGE > 0
if ((ipending & SINT_NETMASK) & ~newcpl) {
int isr = netisr;