summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authordenny <denny@cvs.openbsd.org>1997-07-23 04:32:00 +0000
committerdenny <denny@cvs.openbsd.org>1997-07-23 04:32:00 +0000
commit84e4cb7c159a7e49c407a94981535ce20e4edb02 (patch)
treef016fdc9b0efa5007a610a3e322fd7a592800178 /sys/arch
parent8123242661dc0789936366fdc4ef856c2b80b58a (diff)
Add netatalk interrupt.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mac68k/mac68k/machdep.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c
index 78174f77f44..06239aaad26 100644
--- a/sys/arch/mac68k/mac68k/machdep.c
+++ b/sys/arch/mac68k/mac68k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.43 1997/07/11 20:46:50 gene Exp $ */
+/* $OpenBSD: machdep.c,v 1.44 1997/07/23 04:31:59 denny Exp $ */
/* $NetBSD: machdep.c,v 1.134 1997/02/14 06:15:30 scottr Exp $ */
/*
@@ -980,6 +980,7 @@ badladdr(addr)
void arpintr __P((void));
void ipintr __P((void));
+void atintr __P((void));
void nsintr __P((void));
void clnlintr __P((void));
void pppintr __P((void));
@@ -1000,6 +1001,12 @@ netintr()
ipintr();
}
#endif
+#ifdef NETATALK
+ if (netisr & (1 << NETISR_ATALK)) {
+ netisr &= ~(1 << NETISR_ATALK);
+ atintr();
+ }
+#endif
#ifdef NS
if (netisr & (1 << NETISR_NS)) {
netisr &= ~(1 << NETISR_NS);