mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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 <heinrich.schuchardt@canonical.com> Reviewed-by: Marek Vasut <marek.vasut@mailbox.org>
This commit is contained in:
committed by
Marek Vasut
parent
2736ed925e
commit
7dbcc316a6
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user