diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-11-11 02:29:15 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-11-11 02:29:15 +0000 |
commit | 0edf0956a8620a9cd461d3f081c92645c20c8b9e (patch) | |
tree | 52afaef217227081480010f29c292d9e04aca20a /sys/dev/cardbus/ehci_cardbus.c | |
parent | a752f42a415a947a2bc24e4c9cd34379829ba13b (diff) |
mark ehci_intr() as IPL_MPSAFE here as well
ok mpi@
Diffstat (limited to 'sys/dev/cardbus/ehci_cardbus.c')
-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; |