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/mvme68k | |
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/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index 71395910905..1d1063e6b0d 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.21 1997/03/31 00:24:14 downsj Exp $ */ +/* $OpenBSD: machdep.c,v 1.22 1997/07/23 06:58:21 denny Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -835,6 +835,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); |