Calling of pppintr() included.

This commit is contained in:
ragge 1995-07-05 08:29:27 +00:00
parent dc2461e35c
commit 0e60bcde3a
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.14 1995/06/16 15:36:44 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.15 1995/07/05 08:29:27 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -82,6 +82,8 @@
#include "vm/vm_kern.h"
#include "net/netisr.h"
#include "ppp.h" /* For NERISR_PPP */
/*
* We do these external declarations here, maybe they should be done
* somewhere else...
@ -529,6 +531,11 @@ netintr()
ccittintr();
}
#endif
#if NPPP > 0
if (n & (1 << NETISR_PPP)) {
pppintr();
}
#endif
}
machinecheck(frame)