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/nvidia ehci_intr is MPSAFE now



details:   https://anonhg.NetBSD.org/src/rev/60d449ca7b56
branches:  nick-nhusb
changeset: 334401:60d449ca7b56
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Feb 16 21:26:37 2016 +0000

description:
ehci_intr is MPSAFE now

diffstat:

 sys/arch/arm/nvidia/tegra_ehci.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c1c532c460f3 -r 60d449ca7b56 sys/arch/arm/nvidia/tegra_ehci.c
--- a/sys/arch/arm/nvidia/tegra_ehci.c  Tue Feb 16 21:17:27 2016 +0000
+++ b/sys/arch/arm/nvidia/tegra_ehci.c  Tue Feb 16 21:26:37 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tegra_ehci.c,v 1.1.2.4 2015/12/27 12:09:31 skrll Exp $ */
+/* $NetBSD: tegra_ehci.c,v 1.1.2.5 2016/02/16 21:26:37 skrll Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tegra_ehci.c,v 1.1.2.4 2015/12/27 12:09:31 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tegra_ehci.c,v 1.1.2.5 2016/02/16 21:26:37 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -126,7 +126,7 @@
                return;
        }
 
-       sc->sc_ih = fdtbus_intr_establish(faa->faa_phandle, 0, IPL_USB, 0,
+       sc->sc_ih = fdtbus_intr_establish(faa->faa_phandle, 0, IPL_USB, IST_MPSAFE,
            ehci_intr, &sc->sc);
        if (sc->sc_ih == NULL) {
                aprint_error_dev(self, "couldn't establish interrupt on %s\n",



Home | Main Index | Thread Index | Old Index