From: Heinrich Schuchardt Date: Thu, 27 Nov 2025 17:54:25 +0000 (+0100) Subject: usb/xhci: avoid noisy 'Register NbrPorts' message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7dbcc316a64d3e5bf86632f078c5c08295e882fd;p=thirdparty%2Fu-boot.git usb/xhci: avoid noisy 'Register NbrPorts' message We should avoid overwhelming users with non-essential messages. 'Register NbrPorts' is a debug message for EHCI. Do the same for XHCI. Signed-off-by: Heinrich Schuchardt Reviewed-by: Marek Vasut --- diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 3ee1f67190f..d59804580f1 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -1249,7 +1249,7 @@ static int xhci_lowlevel_init(struct xhci_ctrl *ctrl) reg = xhci_readl(&hccr->cr_hcsparams1); ctrl->hub_desc.bNbrPorts = HCS_MAX_PORTS(reg); - printf("Register %x NbrPorts %d\n", reg, ctrl->hub_desc.bNbrPorts); + debug("Register %x NbrPorts %d\n", reg, ctrl->hub_desc.bNbrPorts); /* Port Indicators */ reg = xhci_readl(&hccr->cr_hccparams);