diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-11-28 07:46:47 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2026-01-08 15:12:59 +0100 |
| commit | 13c9c975e79b73626507702cc2117b7efa3abe9a (patch) | |
| tree | 4943f917ce54b51501aa10d9f12768ce1aaf7e25 /drivers | |
| parent | 141be72e2a9d43aa4e3d1a6a6e0ab8f9eb8784c6 (diff) | |
usb: xhci: avoid noisy 'Starting the controller' message.
We should avoid overwhelming users with non-essential messages.
The message 'Starting the controller' is not written for EHCI.
We should not write it for XHCI either.
Adjust the Python test accordingly.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/host/xhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index d59804580f1..c3986dac3e8 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -158,7 +158,7 @@ static int xhci_start(struct xhci_hcor *hcor) u32 temp; int ret; - puts("Starting the controller\n"); + debug("Starting the controller\n"); temp = xhci_readl(&hcor->or_usbcmd); temp |= (CMD_RUN); xhci_writel(&hcor->or_usbcmd, temp); |
