From de086f1a6c6fef3ba1bf498f4663ebef5f2b32b3 Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Thu, 23 Jan 2020 01:46:05 +0000 Subject: [PATCH] This is Ethernet driver so mark the interrupt appropriately. --- sys/powerpc/pseries/phyp_llan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/powerpc/pseries/phyp_llan.c b/sys/powerpc/pseries/phyp_llan.c index 518b747dd94..b387f350f9d 100644 --- a/sys/powerpc/pseries/phyp_llan.c +++ b/sys/powerpc/pseries/phyp_llan.c @@ -189,7 +189,7 @@ llan_attach(device_t dev) return (ENXIO); } - bus_setup_intr(dev, sc->irq, INTR_TYPE_MISC | INTR_MPSAFE | + bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE | INTR_ENTROPY, NULL, llan_intr, sc, &sc->irq_cookie); /* Setup DMA */