summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-07 23:16:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-07 23:16:09 +0000
commit442a311375e09fddb113ba6a49228530c53bb53f (patch)
treec86df64571eb4e09abd3f447acb73a410741faf8 /sys/arch/mvme68k
parent6e5a6e8c80d378850137a3c72be709991fd47faa (diff)
global decl for *intr() routines, plus add INET6
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r--sys/arch/mvme68k/mvme68k/machdep.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c
index f3cc2011518..03613846387 100644
--- a/sys/arch/mvme68k/mvme68k/machdep.c
+++ b/sys/arch/mvme68k/mvme68k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.23 1998/03/01 00:37:42 niklas Exp $ */
+/* $OpenBSD: machdep.c,v 1.24 1999/01/07 23:16:01 deraadt Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -855,6 +855,12 @@ netintr()
ipintr();
}
#endif
+#ifdef INET6
+ if (netisr & (1 << NETISR_IPV6)) {
+ netisr &= ~(1 << NETISR_IPV6);
+ ipv6intr();
+ }
+#endif
#ifdef NETATALK
if (netisr & (1 << NETISR_ATALK)) {
netisr &= ~(1 << NETISR_ATALK);