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/powerpc | |
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/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/machdep.c | 6 |
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(); |