Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/nick-nhusb]: src/sys/arch/arm/allwinner Mark ohci_intr MPSAFE



details:   https://anonhg.NetBSD.org/src/rev/338ca9ddb3f6
branches:  nick-nhusb
changeset: 804544:338ca9ddb3f6
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Feb 16 21:28:29 2016 +0000

description:
Mark ohci_intr MPSAFE

diffstat:

 sys/arch/arm/allwinner/awin_usb.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 929b238d168b -r 338ca9ddb3f6 sys/arch/arm/allwinner/awin_usb.c
--- a/sys/arch/arm/allwinner/awin_usb.c Tue Feb 16 21:26:37 2016 +0000
+++ b/sys/arch/arm/allwinner/awin_usb.c Tue Feb 16 21:28:29 2016 +0000
@@ -34,7 +34,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: awin_usb.c,v 1.17.2.6 2016/02/12 16:43:38 skrll Exp $");
+__KERNEL_RCSID(1, "$NetBSD: awin_usb.c,v 1.17.2.7 2016/02/16 21:28:29 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -165,7 +165,7 @@
        }
 
        usbsc->usbsc_ohci_ih = intr_establish(irq, IPL_VM,
-           IST_LEVEL, ohci_intr, sc);
+           IST_LEVEL | IST_MPSAFE, ohci_intr, sc);
        if (usbsc->usbsc_ohci_ih == NULL) {
                aprint_error_dev(self, "failed to establish interrupt %d\n",
                     irq);



Home | Main Index | Thread Index | Old Index