Searched refs:irq_err (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/usb/controller/ |
H A D | ehci_mv.c | 89 static struct resource *irq_err; variable 194 irq_err = bus_alloc_resource_any(self, SYS_RES_IRQ, &rid, in mv_ehci_attach() 196 if (irq_err == NULL) { in mv_ehci_attach() 227 err = bus_setup_intr(self, irq_err, INTR_TYPE_BIO, in mv_ehci_attach() 310 if (irq_err && ih_err) { in mv_ehci_detach() 311 err = bus_teardown_intr(self, irq_err, ih_err); in mv_ehci_detach() 318 if (irq_err) { in mv_ehci_detach() 319 bus_release_resource(self, SYS_RES_IRQ, 0, irq_err); in mv_ehci_detach() 320 irq_err = NULL; in mv_ehci_detach()
|