public inbox for linux-usb@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: always print reset/new device message
@ 2024-03-18  5:25 nick black
  2024-03-23 17:58 ` Alan Stern
  0 siblings, 1 reply; 2+ messages in thread
From: nick black @ 2024-03-18  5:25 UTC (permalink / raw)
  To: linux-usb; +Cc: nick black

Since usb_speed_string() always returns a valid string
(invalid speeds turn into "UNKNOWN"), go ahead and
always print this diagnostic, rather than checking the
speed here (which wasn't up to date for SPEED_SUPER_PLUS,
and looks like it had an off-by-one error anyway).

Signed-off-by: nick black <dankamongmen@gmail.com>
---
 drivers/usb/core/hub.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index e38a4124f610..7325e5420900 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -4909,11 +4909,10 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
 	else
 		driver_name = udev->bus->sysdev->driver->name;
 
-	if (udev->speed < USB_SPEED_SUPER)
-		dev_info(&udev->dev,
-				"%s %s USB device number %d using %s\n",
-				(initial ? "new" : "reset"), speed,
-				devnum, driver_name);
+	dev_info(&udev->dev,
+			"%s %s USB device number %d using %s\n",
+			(initial ? "new" : "reset"), speed,
+			devnum, driver_name);
 
 	if (initial) {
 		/* Set up TT records, if needed  */
-- 
2.43.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-23 17:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-18  5:25 [PATCH] usb: always print reset/new device message nick black
2024-03-23 17:58 ` Alan Stern

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox