* [PATCH] usb: ohci-at91: Use dynamic device name for OHCI HCD creation
@ 2025-06-11 7:54 Mihai Sain
2025-06-11 14:08 ` Alan Stern
0 siblings, 1 reply; 3+ messages in thread
From: Mihai Sain @ 2025-06-11 7:54 UTC (permalink / raw)
To: stern, gregkh, nicolas.ferre, alexandre.belloni, claudiu.beznea,
linux-usb, linux-arm-kernel, linux-kernel
Cc: Mihai Sain
Use the dynamic device name instead of the hardcoded string "at91"
when creating the OHCI host controller driver.
This ensures that the device name is more flexible
and correctly reflects the actual device in the system.
This will be in sync with ehci at91 driver.
[root@sam9x75eb ~]$ dmesg | grep usb
[ 1.464487] usb usb1: Manufacturer: Linux 6.16.0-rc1 ehci_hcd
[ 1.470210] usb usb1: SerialNumber: 700000.usb-ehci
[ 1.595683] usb usb2: Manufacturer: Linux 6.16.0-rc1 ohci_hcd
[ 1.601406] usb usb2: SerialNumber: 600000.usb-ohci
[root@sam9x75eb ~]$ cat /proc/iomem | grep usb
00600000-006fffff : 600000.usb-ohci usb-ohci@600000
00700000-007fffff : 700000.usb-ehci usb-ehci@700000
Signed-off-by: Mihai Sain <mihai.sain@microchip.com>
---
drivers/usb/host/ohci-at91.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
index 5df793dcb25d..12fdb18934cf 100644
--- a/drivers/usb/host/ohci-at91.c
+++ b/drivers/usb/host/ohci-at91.c
@@ -193,7 +193,7 @@ static int usb_hcd_at91_probe(const struct hc_driver *driver,
if (irq < 0)
return irq;
- hcd = usb_create_hcd(driver, dev, "at91");
+ hcd = usb_create_hcd(driver, dev, dev_name(dev));
if (!hcd)
return -ENOMEM;
ohci_at91 = hcd_to_ohci_at91_priv(hcd);
base-commit: aef17cb3d3c43854002956f24c24ec8e1a0e3546
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: ohci-at91: Use dynamic device name for OHCI HCD creation
2025-06-11 7:54 [PATCH] usb: ohci-at91: Use dynamic device name for OHCI HCD creation Mihai Sain
@ 2025-06-11 14:08 ` Alan Stern
[not found] ` <PH3PPF37F43E35DF7E5350AEBBB079073748274A@PH3PPF37F43E35D.namprd11.prod.outlook.com>
0 siblings, 1 reply; 3+ messages in thread
From: Alan Stern @ 2025-06-11 14:08 UTC (permalink / raw)
To: Mihai Sain
Cc: gregkh, nicolas.ferre, alexandre.belloni, claudiu.beznea,
linux-usb, linux-arm-kernel, linux-kernel
On Wed, Jun 11, 2025 at 10:54:15AM +0300, Mihai Sain wrote:
> Use the dynamic device name instead of the hardcoded string "at91"
> when creating the OHCI host controller driver.
> This ensures that the device name is more flexible
> and correctly reflects the actual device in the system.
> This will be in sync with ehci at91 driver.
>
> [root@sam9x75eb ~]$ dmesg | grep usb
> [ 1.464487] usb usb1: Manufacturer: Linux 6.16.0-rc1 ehci_hcd
> [ 1.470210] usb usb1: SerialNumber: 700000.usb-ehci
> [ 1.595683] usb usb2: Manufacturer: Linux 6.16.0-rc1 ohci_hcd
> [ 1.601406] usb usb2: SerialNumber: 600000.usb-ohci
>
> [root@sam9x75eb ~]$ cat /proc/iomem | grep usb
> 00600000-006fffff : 600000.usb-ohci usb-ohci@600000
> 00700000-007fffff : 700000.usb-ehci usb-ehci@700000
Are these two outputs supposed to make some sort of point? It would be
better to have a before-and-after comparison, so we can see what the
effect of the patch is.
Alan Stern
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] usb: ohci-at91: Use dynamic device name for OHCI HCD creation
[not found] ` <PH3PPF37F43E35DF7E5350AEBBB079073748274A@PH3PPF37F43E35D.namprd11.prod.outlook.com>
@ 2025-06-12 16:32 ` Alan Stern
0 siblings, 0 replies; 3+ messages in thread
From: Alan Stern @ 2025-06-12 16:32 UTC (permalink / raw)
To: Mihai.Sain
Cc: gregkh, Nicolas.Ferre, alexandre.belloni, claudiu.beznea,
linux-usb, linux-arm-kernel, linux-kernel
On Thu, Jun 12, 2025 at 10:33:09AM +0000, Mihai.Sain@microchip.com wrote:
> Hi Alan,
>
> I'm sorry, I'm replying using Outlook web.
>
> On Wed, Jun 11, 2025 at 10:54:15AM +0300, Mihai Sain wrote:
> > Use the dynamic device name instead of the hardcoded string "at91"
> > when creating the OHCI host controller driver.
> > This ensures that the device name is more flexible
> > and correctly reflects the actual device in the system.
> > This will be in sync with ehci at91 driver.
> >
> > [root@sam9x75eb ~]$ dmesg | grep usb
> > [ 1.464487] usb usb1: Manufacturer: Linux 6.16.0-rc1 ehci_hcd
> > [ 1.470210] usb usb1: SerialNumber: 700000.usb-ehci
> > [ 1.595683] usb usb2: Manufacturer: Linux 6.16.0-rc1 ohci_hcd
> > [ 1.601406] usb usb2: SerialNumber: 600000.usb-ohci
> >
> > [root@sam9x75eb ~]$ cat /proc/iomem | grep usb
> > 00600000-006fffff : 600000.usb-ohci usb-ohci@600000
> > 00700000-007fffff : 700000.usb-ehci usb-ehci@700000
>
> Are these two outputs supposed to make some sort of point? It would be
> better to have a before-and-after comparison, so we can see what the
> effect of the patch is.
>
> Before this patch the SerialNumber print from ohci driver, was looking like this:
>
> [ 1.601406] usb usb2: SerialNumber: at91
>
> I thought it was a good ideea to align this print with the one from ehci drive
Okay, good. Yes, that is worth doing.
Please include this information in the patch description and resubmit.
Alan Stern
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-13 0:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-11 7:54 [PATCH] usb: ohci-at91: Use dynamic device name for OHCI HCD creation Mihai Sain
2025-06-11 14:08 ` Alan Stern
[not found] ` <PH3PPF37F43E35DF7E5350AEBBB079073748274A@PH3PPF37F43E35D.namprd11.prod.outlook.com>
2025-06-12 16:32 ` Alan Stern
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).