diff --git a/sys/net/netisr_dispatch.h b/sys/net/netisr_dispatch.h index 3eebc4d957f4..542e013be504 100644 --- a/sys/net/netisr_dispatch.h +++ b/sys/net/netisr_dispatch.h @@ -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 @@ -48,15 +48,15 @@ #ifdef NATM DONETISR(NETISR_NATM,natmintr); #endif -#if NSL > 0 +#if NSL > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS) DONETISR(NETISR_SLIP,slnetisr); #endif -#if NSTRIP > 0 +#if NSTRIP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS) DONETISR(NETISR_STRIP,stripnetisr); #endif -#if NPPP > 0 +#if NPPP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS) DONETISR(NETISR_PPP,pppnetisr); #endif -#if NBRIDGE > 0 +#if NBRIDGE > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS) DONETISR(NETISR_BRIDGE,bridgenetisr); #endif