summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2025-11-27 18:54:25 +0100
committerMarek Vasut <[email protected]>2025-11-27 19:41:03 +0100
commit7dbcc316a64d3e5bf86632f078c5c08295e882fd (patch)
treef96c90ccef6b67840039f0525b6aa30fca17c988 /drivers
parent2736ed925e3226346b10d3e4ee9ba9fe9544d2f0 (diff)
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 <[email protected]> Reviewed-by: Marek Vasut <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/host/xhci.c2
1 files changed, 1 insertions, 1 deletions
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);