Module Name: src
Committed By: matt
Date: Sun Sep 8 01:01:33 UTC 2013
Modified Files:
src/sys/arch/arm/allwinner: awin_usb.c
Log Message:
Move interrupts back to IPL_USB
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/allwinner/awin_usb.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/allwinner/awin_usb.c
diff -u src/sys/arch/arm/allwinner/awin_usb.c:1.8 src/sys/arch/arm/allwinner/awin_usb.c:1.9
--- src/sys/arch/arm/allwinner/awin_usb.c:1.8 Sat Sep 7 22:51:41 2013
+++ src/sys/arch/arm/allwinner/awin_usb.c Sun Sep 8 01:01:33 2013
@@ -34,7 +34,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: awin_usb.c,v 1.8 2013/09/07 22:51:41 matt Exp $");
+__KERNEL_RCSID(1, "$NetBSD: awin_usb.c,v 1.9 2013/09/08 01:01:33 matt Exp $");
#include <sys/bus.h>
#include <sys/device.h>
@@ -144,7 +144,7 @@ ohci_awinusb_attach(device_t parent, dev
}
const int irq = awinusb_ohci_irqs[usbaa->usbaa_port];
- usbsc->usbsc_ohci_ih = intr_establish(irq, IPL_SCHED,
+ usbsc->usbsc_ohci_ih = intr_establish(irq, IPL_USB,
IST_LEVEL, ohci_intr, sc);
if (usbsc->usbsc_ohci_ih == NULL) {
aprint_error_dev(self, "failed to establish interrupt %d\n",
@@ -217,7 +217,7 @@ ehci_awinusb_attach(device_t parent, dev
}
const int irq = awinusb_ehci_irqs[usbaa->usbaa_port];
- usbsc->usbsc_ehci_ih = intr_establish(irq, IPL_SCHED,
+ usbsc->usbsc_ehci_ih = intr_establish(irq, IPL_USB,
IST_LEVEL, ehci_intr, sc);
if (usbsc->usbsc_ehci_ih == NULL) {
aprint_error_dev(self, "failed to establish interrupt %d\n",