diff options
author | 2015-11-11 02:29:14 +0000 | |
---|---|---|
committer | 2015-11-11 02:29:14 +0000 | |
commit | 21d0ed100773524d9bd2caba183650f619359118 (patch) | |
tree | 4b76eff00c6f2f0615160a6fc7631ad41f08147b | |
parent | replace the ifqueue used for the pp_cpq with an mbuf_queue. (diff) | |
download | wireguard-openbsd-21d0ed100773524d9bd2caba183650f619359118.tar.xz wireguard-openbsd-21d0ed100773524d9bd2caba183650f619359118.zip |
mark ehci_intr() as IPL_MPSAFE here as well
ok mpi@
-rw-r--r-- | sys/dev/cardbus/ehci_cardbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cardbus/ehci_cardbus.c b/sys/dev/cardbus/ehci_cardbus.c index c0e08c13bc0..a6778539ea9 100644 --- a/sys/dev/cardbus/ehci_cardbus.c +++ b/sys/dev/cardbus/ehci_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci_cardbus.c,v 1.21 2015/03/14 03:38:47 jsg Exp $ */ +/* $OpenBSD: ehci_cardbus.c,v 1.22 2015/11/11 02:29:14 jsg Exp $ */ /* $NetBSD: ehci_cardbus.c,v 1.6.6.3 2004/09/21 13:27:25 skrll Exp $ */ /* @@ -123,7 +123,7 @@ ehci_cardbus_attach(struct device *parent, struct device *self, void *aux) EOWRITE2(&sc->sc, EHCI_USBINTR, 0); sc->sc_ih = cardbus_intr_establish(cc, cf, ca->ca_intrline, - IPL_USB, ehci_intr, sc, devname); + IPL_USB | IPL_MPSAFE, ehci_intr, sc, devname); if (sc->sc_ih == NULL) { printf(": unable to establish interrupt\n"); return; |