Only dispatch slnetisr & co if we don't have generic soft interrupts.
This commit is contained in:
parent
dd8c947561
commit
81ece2d4bf
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: netisr_dispatch.h,v 1.6 2001/04/11 03:55:16 thorpej Exp $ */
|
/* $NetBSD: netisr_dispatch.h,v 1.7 2001/04/14 13:54:38 augustss Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* netisr_dispatch: This file is included by the
|
* netisr_dispatch: This file is included by the
|
||||||
|
@ -48,15 +48,15 @@
|
||||||
#ifdef NATM
|
#ifdef NATM
|
||||||
DONETISR(NETISR_NATM,natmintr);
|
DONETISR(NETISR_NATM,natmintr);
|
||||||
#endif
|
#endif
|
||||||
#if NSL > 0
|
#if NSL > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
|
||||||
DONETISR(NETISR_SLIP,slnetisr);
|
DONETISR(NETISR_SLIP,slnetisr);
|
||||||
#endif
|
#endif
|
||||||
#if NSTRIP > 0
|
#if NSTRIP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
|
||||||
DONETISR(NETISR_STRIP,stripnetisr);
|
DONETISR(NETISR_STRIP,stripnetisr);
|
||||||
#endif
|
#endif
|
||||||
#if NPPP > 0
|
#if NPPP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
|
||||||
DONETISR(NETISR_PPP,pppnetisr);
|
DONETISR(NETISR_PPP,pppnetisr);
|
||||||
#endif
|
#endif
|
||||||
#if NBRIDGE > 0
|
#if NBRIDGE > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
|
||||||
DONETISR(NETISR_BRIDGE,bridgenetisr);
|
DONETISR(NETISR_BRIDGE,bridgenetisr);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue