diff options
author | ian <ian@FreeBSD.org> | 2017-03-01 21:12:50 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2017-03-01 21:12:50 +0000 |
commit | 6db41f8fdb1a576b6da95b4bad49cfb03c8c8a63 (patch) | |
tree | 5bbe1345cb6c3dc8dec10cb05f3cddfa3f7f287f /sys/dev/usb/controller/ehci_imx.c | |
parent | 9a83dc9d3348d95e42fb9e36fb065ae52a97e8cc (diff) | |
download | FreeBSD-src-6db41f8fdb1a576b6da95b4bad49cfb03c8c8a63.zip FreeBSD-src-6db41f8fdb1a576b6da95b4bad49cfb03c8c8a63.tar.gz |
MFC r313674:
Enable usb low and full speed devices connected to the imx6 root hubs.
Diffstat (limited to 'sys/dev/usb/controller/ehci_imx.c')
-rw-r--r-- | sys/dev/usb/controller/ehci_imx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/ehci_imx.c b/sys/dev/usb/controller/ehci_imx.c index df4d202..4ebccdf 100644 --- a/sys/dev/usb/controller/ehci_imx.c +++ b/sys/dev/usb/controller/ehci_imx.c @@ -298,8 +298,9 @@ imx_ehci_attach(device_t dev) * Set flags that affect ehci_init() behavior, and hook our post-reset * code into the standard controller code. */ - esc->sc_flags |= EHCI_SCFLG_NORESTERM; + esc->sc_flags |= EHCI_SCFLG_NORESTERM | EHCI_SCFLG_TT; esc->sc_vendor_post_reset = imx_ehci_post_reset; + esc->sc_vendor_get_port_speed = ehci_get_port_speed_portsc; err = ehci_init(esc); if (err != 0) { |