summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
diff options
context:
space:
mode:
authordenny <denny@cvs.openbsd.org>1997-07-23 06:58:35 +0000
committerdenny <denny@cvs.openbsd.org>1997-07-23 06:58:35 +0000
commit9f95e5fa8786d06e27db299b890e830e050a71bc (patch)
treed1db30e69f9dca0c85b062d00ae0a4a98706192c /sys/arch/powerpc
parent750d9a7574292e97f1554912f02eb28d3b23b062 (diff)
Add AppleTalk netisr. Only tested (indeed, only compiled) on mac68k port.
Add options NETATALK to your config to try it out.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/powerpc/machdep.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/machdep.c b/sys/arch/powerpc/powerpc/machdep.c
index 2fb52d23ba7..71bc14dafb3 100644
--- a/sys/arch/powerpc/powerpc/machdep.c
+++ b/sys/arch/powerpc/powerpc/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.7 1997/02/27 23:40:19 rahnds Exp $ */
+/* $OpenBSD: machdep.c,v 1.8 1997/07/23 06:58:27 denny Exp $ */
/* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */
/*
@@ -691,6 +691,10 @@ softnet()
if (isr & (1 << NETISR_IP))
ipintr();
#endif
+#ifdef NETATALK
+ if (isr & (1 << NETISR_ATALK))
+ atintr();
+#endif
#ifdef IMP
if (isr & (1 << NETISR_IMP))
impintr();