libpayload: usb: Fixup wrong use of config
replace CONFIG_LP_XHCI_MTK_QUIRK by CONFIG_LP_USB_XHCI_MTK_QUIRK BRANCH=none BUG=none TEST=Rev0-oak Original-Change-Id: I68f58ed3b02caa7cef8f0f60a4a8f5e9755c97a7 Original-Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Original-Reviewed-on: https://chromium-review.googlesource.com/290522 Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Original-Commit-Queue: Yidi Lin <yidi.lin@mediatek.com> Original-Tested-by: Yidi Lin <yidi.lin@mediatek.com> Change-Id: I316712e99e0b44d292dab27cf66e26837dc2e957 Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Reviewed-on: http://review.coreboot.org/11179 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
5f9a3f7fae
commit
b4a24995c9
|
@ -538,7 +538,7 @@ xhci_enqueue_td(transfer_ring_t *const tr, const int ep, const size_t mps,
|
|||
cur_length = length;
|
||||
packets = 0;
|
||||
length = 0;
|
||||
} else if (!IS_ENABLED(CONFIG_LP_XHCI_MTK_QUIRK)) {
|
||||
} else if (!IS_ENABLED(CONFIG_LP_USB_XHCI_MTK_QUIRK)) {
|
||||
packets -= (residue + cur_length) / mps;
|
||||
residue = (residue + cur_length) % mps;
|
||||
length -= cur_length;
|
||||
|
@ -551,7 +551,7 @@ xhci_enqueue_td(transfer_ring_t *const tr, const int ep, const size_t mps,
|
|||
TRB_SET(TDS, trb, MIN(TRB_MAX_TD_SIZE, packets));
|
||||
TRB_SET(CH, trb, 1);
|
||||
|
||||
if (length && IS_ENABLED(CONFIG_LP_XHCI_MTK_QUIRK)) {
|
||||
if (length && IS_ENABLED(CONFIG_LP_USB_XHCI_MTK_QUIRK)) {
|
||||
/*
|
||||
* For MTK's xHCI controller, TDS defines a number of
|
||||
* packets that remain to be transferred for a TD after
|
||||
|
|
Loading…
Reference in New Issue