summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2024-06-18 21:07:29 +0200
committerMarek Vasut <[email protected]>2024-06-19 06:14:55 +0200
commit4477e425d5e11cd279410c76fb189f8d9e2f4704 (patch)
treeccba8df88076c27fb2eb9fe4bd4155bf1ac48aa2
parentfe2ce09a0753634543c32cafe85eb87a625f76ca (diff)
usb: informative message if no controller
The message 'No working controllers found' provides no clue that this refers to USB controllers. Provide a message that refers to USB. Signed-off-by: Heinrich Schuchardt <[email protected]> Reviewed-by: Dragan Simic <[email protected]> Reviewed-by: Caleb Connolly <[email protected]> Reviewed-by: Marek Vasut <[email protected]> Reviewed-by: Mattijs Korpershoek <[email protected]>
-rw-r--r--drivers/usb/host/usb-uclass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/usb-uclass.c b/drivers/usb/host/usb-uclass.c
index a1cd0ad2d66..a5288ebca8f 100644
--- a/drivers/usb/host/usb-uclass.c
+++ b/drivers/usb/host/usb-uclass.c
@@ -388,7 +388,7 @@ int usb_init(void)
/* if we were not able to find at least one working bus, bail out */
if (controllers_initialized == 0)
- printf("No working controllers found\n");
+ printf("No USB controllers found\n");
return usb_started ? 0 : -ENOENT;
}