Add code to netintr to call pppintr

This commit is contained in:
paulus 1995-07-04 12:14:32 +00:00
parent 63eeefb6cd
commit 1513342690

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.49 1995/06/30 05:25:01 briggs Exp $ */
/* $NetBSD: machdep.c,v 1.50 1995/07/04 12:14:32 paulus Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -1132,6 +1132,13 @@ netintr()
clnlintr();
}
#endif
#include "ppp.h"
#if NPPP > 0
if (netisr & (1 << NETISR_PPP)) {
netisr &= ~(1 << NETISR_PPP);
pppintr();
}
#endif
}
#if defined(USING_FLEXIBLE_INTERRUPTS)