summaryrefslogtreecommitdiff
path: root/sys/arch/pc532
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/pc532
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/pc532')
-rw-r--r--sys/arch/pc532/pc532/intr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/pc532/pc532/intr.c b/sys/arch/pc532/pc532/intr.c
index 172fc88c2e8..0f95204b7bf 100644
--- a/sys/arch/pc532/pc532/intr.c
+++ b/sys/arch/pc532/pc532/intr.c
@@ -29,7 +29,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: intr.c,v 1.2 1995/10/26 01:11:53 deraadt Exp $
+ * $Id: intr.c,v 1.3 1997/07/23 06:58:24 denny Exp $
*/
#define DEFINE_SPLX
@@ -177,6 +177,9 @@ softnet()
#endif
if (isr & (1 << NETISR_IP)) ipintr();
#endif
+#ifdef NETATALK
+ if (isr & (1 << NETISR_ATALK)) atintr();
+#endif
#ifdef IMP
if (isr & (1 << NETISR_IMP)) impintr();
#endif