View | Details | Raw Unified | Return to bug 257082 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/dev/usb/controller/xhci.c (-5 / +1 lines)
Lines 209-219 xhci_dump_device(struct xhci_softc *sc, struct xhci_slot_ctx *psl) Link Here
209
uint8_t
209
uint8_t
210
xhci_use_polling(void)
210
xhci_use_polling(void)
211
{
211
{
212
#ifdef USB_DEBUG
212
	return (1);
213
	return (xhcipolling != 0);
214
#else
215
	return (0);
216
#endif
217
}
213
}
218
214
219
static void
215
static void
(-)b/sys/dev/usb/controller/xhci_pci.c (-1 / +1 lines)
Lines 330-336 xhci_pci_attach(device_t self) Link Here
330
330
331
	sprintf(sc->sc_vendor, "0x%04x", pci_get_vendor(self));
331
	sprintf(sc->sc_vendor, "0x%04x", pci_get_vendor(self));
332
332
333
	if (sc->sc_irq_res != NULL) {
333
	if (0 && sc->sc_irq_res != NULL) {
334
		err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO | INTR_MPSAFE,
334
		err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO | INTR_MPSAFE,
335
		    NULL, (driver_intr_t *)xhci_interrupt, sc, &sc->sc_intr_hdl);
335
		    NULL, (driver_intr_t *)xhci_interrupt, sc, &sc->sc_intr_hdl);
336
		if (err != 0) {
336
		if (err != 0) {

Return to bug 257082