https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208959

--- Comment #3 from Hans Petter Selasky <hsela...@freebsd.org> ---
In sys/dev/usb/controller/uhci.c try to change:

        /* get acknowledge bits */
        status &= (UHCI_STS_USBINT |
            UHCI_STS_USBEI |
            UHCI_STS_RD |
            UHCI_STS_HSE |
            UHCI_STS_HCPE |
            UHCI_STS_HCH);

Into:

        /* get acknowledge bits */
        status &= (UHCI_STS_USBINT |
            UHCI_STS_USBEI |
            UHCI_STS_RD |
            UHCI_STS_HSE |
            UHCI_STS_HCPE);

I'm not sure if it helps.

--HPS

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-usb@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-usb
To unsubscribe, send any mail to "freebsd-usb-unsubscr...@freebsd.org"

Reply via email to