svn commit: r357011 - head/sys/powerpc/pseries

Gleb Smirnoff glebius at FreeBSD.org
Thu Jan 23 01:46:06 UTC 2020


Author: glebius
Date: Thu Jan 23 01:46:05 2020
New Revision: 357011
URL: https://svnweb.freebsd.org/changeset/base/357011

Log:
  This is Ethernet driver so mark the interrupt appropriately.

Modified:
  head/sys/powerpc/pseries/phyp_llan.c

Modified: head/sys/powerpc/pseries/phyp_llan.c
==============================================================================
--- head/sys/powerpc/pseries/phyp_llan.c	Thu Jan 23 01:41:09 2020	(r357010)
+++ head/sys/powerpc/pseries/phyp_llan.c	Thu Jan 23 01:46:05 2020	(r357011)
@@ -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 */


More information about the svn-src-all mailing list