Add pppintr() to netintr().

This commit is contained in:
leo 1995-07-13 21:36:09 +00:00
parent 3a7e8d570c
commit 14ac72899c
1 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.10 1995/07/11 18:25:04 leo Exp $ */
/* $NetBSD: machdep.c,v 1.11 1995/07/13 21:36:09 leo Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -88,6 +88,9 @@
#include <machine/iomap.h>
#include <dev/cons.h>
#include "ether.h"
#include "ppp.h"
static void call_sicallbacks __P((void));
static void alloc_sicallback __P((void));
@ -1088,6 +1091,12 @@ netintr()
clnlintr();
}
#endif
#ifdef NPPP
if (netisr & (1 << NETISR_PPP)) {
netisr &= ~(1 << NETISR_PPP);
pppintr();
}
#endif
}