Add call to pppintr from netintr.

This commit is contained in:
paulus 1995-07-04 06:54:52 +00:00
parent c9a82bdc54
commit b41c6a7d1c
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.48 1995/05/16 14:34:19 mycroft Exp $ */
/* $NetBSD: machdep.c,v 1.49 1995/07/04 06:54:52 paulus Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -1324,6 +1324,13 @@ netintr()
ccittintr();
}
#endif
#include "ppp.h"
#if NPPP > 0
if (netisr & (1 << NETISR_PPP)) {
netisr &= ~(1 << NETISR_PPP);
pppintr();
}
#endif
}
intrhand(sr)