summaryrefslogtreecommitdiff
path: root/sys/arch/pc532
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/pc532')
-rw-r--r--sys/arch/pc532/pc532/intr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/pc532/pc532/intr.c b/sys/arch/pc532/pc532/intr.c
index afe3d85ea4b..5960b18becd 100644
--- a/sys/arch/pc532/pc532/intr.c
+++ b/sys/arch/pc532/pc532/intr.c
@@ -29,7 +29,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: intr.c,v 1.4 1999/05/24 23:09:06 jason Exp $
+ * $Id: intr.c,v 1.5 1999/12/08 06:50:16 itojun Exp $
*/
#define DEFINE_SPLX
@@ -177,6 +177,9 @@ softnet()
#endif
if (isr & (1 << NETISR_IP)) ipintr();
#endif
+#ifdef INET6
+ if (isr & (1 << NETISR_IPV6)) ip6intr();
+#endif
#ifdef NETATALK
if (isr & (1 << NETISR_ATALK)) atintr();
#endif