summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-11-28 08:25:20 -0600
committerTom Rini <[email protected]>2025-11-28 08:25:20 -0600
commit781e6e35a066101e8cc56095376d0d7640e1877b (patch)
tree0af29905d7cfe737e486a21d05e42a00d88308d3
parent610a3eb27ea1e68363fffcb3f14b7fc097ef08b6 (diff)
parent7dbcc316a64d3e5bf86632f078c5c08295e882fd (diff)
Merge branch 'master' of git://source.denx.de/u-boot-usb
- A Kconfig dependency fix and a patch to avoid a noisy print
-rw-r--r--drivers/usb/host/Kconfig1
-rw-r--r--drivers/usb/host/xhci.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 427b62e934b..99f381db9f9 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -271,6 +271,7 @@ config USB_EHCI_MSM
config USB_EHCI_PCI
bool "Support for PCI-based EHCI USB controller"
+ depends on PCI
default y if X86
help
Enables support for the PCI-based EHCI controller.
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);