[coreboot-gerrit] New patch to review for coreboot: libpayload: usb: Fixup wrong use of config

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Wed Aug 12 17:51:32 CEST 2015


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11179

-gerrit

commit d2f88af048574da98f2e77fb3d7afa061bbc52fe
Author: Chunfeng Yun <chunfeng.yun at mediatek.com>
Date:   Tue Aug 4 14:33:58 2015 +0800

    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 at mediatek.com>
    Original-Reviewed-on: https://chromium-review.googlesource.com/290522
    Original-Reviewed-by: Julius Werner <jwerner at chromium.org>
    Original-Commit-Queue: Yidi Lin <yidi.lin at mediatek.com>
    Original-Tested-by: Yidi Lin <yidi.lin at mediatek.com>
    
    Change-Id: I316712e99e0b44d292dab27cf66e26837dc2e957
    Signed-off-by: Chunfeng Yun <chunfeng.yun at mediatek.com>
---
 payloads/libpayload/drivers/usb/xhci.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/payloads/libpayload/drivers/usb/xhci.c b/payloads/libpayload/drivers/usb/xhci.c
index f336f4d..315efb7 100644
--- a/payloads/libpayload/drivers/usb/xhci.c
+++ b/payloads/libpayload/drivers/usb/xhci.c
@@ -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



More information about the coreboot-gerrit mailing list