Add call to pppintr from netintr.
This commit is contained in:
parent
c9a82bdc54
commit
b41c6a7d1c
@ -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.
|
* Copyright (c) 1988 University of Utah.
|
||||||
@ -1324,6 +1324,13 @@ netintr()
|
|||||||
ccittintr();
|
ccittintr();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#include "ppp.h"
|
||||||
|
#if NPPP > 0
|
||||||
|
if (netisr & (1 << NETISR_PPP)) {
|
||||||
|
netisr &= ~(1 << NETISR_PPP);
|
||||||
|
pppintr();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
intrhand(sr)
|
intrhand(sr)
|
||||||
|
Loading…
Reference in New Issue
Block a user