mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
usb: ehci: do not set the LSB of Current qTD pointer
According to EHCI specification, the LSB of DWORD 3 of Queue Head (Current qTD Pointer) is not T-bit, but always zero. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
fbd3b79d77
commit
0c6de8853b
1 changed files with 0 additions and 1 deletions
|
@ -971,7 +971,6 @@ int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
|
|||
qh_list->qh_link = cpu_to_hc32((uint32_t)qh_list | QH_LINK_TYPE_QH);
|
||||
qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
|
||||
QH_ENDPT1_EPS(USB_SPEED_HIGH));
|
||||
qh_list->qh_curtd = cpu_to_hc32(QT_NEXT_TERMINATE);
|
||||
qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
|
||||
qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
|
||||
qh_list->qh_overlay.qt_token =
|
||||
|
|
Loading…
Add table
Reference in a new issue