diff options
author | denny <denny@cvs.openbsd.org> | 1997-07-23 06:58:35 +0000 |
---|---|---|
committer | denny <denny@cvs.openbsd.org> | 1997-07-23 06:58:35 +0000 |
commit | 9f95e5fa8786d06e27db299b890e830e050a71bc (patch) | |
tree | d1db30e69f9dca0c85b062d00ae0a4a98706192c /sys/arch/vax | |
parent | 750d9a7574292e97f1554912f02eb28d3b23b062 (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/vax')
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 415489370df..9904d58fcbc 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.12 1997/05/28 23:27:33 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.13 1997/07/23 06:58:31 denny Exp $ */ /* $NetBSD: machdep.c,v 1.35 1997/01/11 11:31:26 ragge Exp $ */ /* @@ -647,6 +647,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); |