On Wed, 12 Jun 2024 13:45:26 +0200 Niklas Söderlund wrote: > On 2024-06-11 19:56:16 -0700, Jakub Kicinski wrote: > > > + netdev_info(ndev, "MAC address %pM\n", ndev->dev_addr); > > > > That's fairly unusual, why print the MAC address to logs? > > Renesas net drivers print the MAC address in probe, > > * RAVB > > netdev_info(ndev, "Base address at %#x, %pM, IRQ %d.\n", > (u32)ndev->base_addr, ndev->dev_addr, ndev->irq); > > * SH_ETH > > netdev_info(ndev, "Base address at 0x%x, %pM, IRQ %d.\n", > (u32)ndev->base_addr, ndev->dev_addr, ndev->irq); > > * RENESAS_ETHER_SWITCH > > rswitch_for_each_enabled_port(priv, i) > netdev_info(priv->rdev[i]->ndev, "MAC address %pM\n", > priv->rdev[i]->ndev->dev_addr); > > I have no strong opinion on if this is good or bad, but I do think they > all shall behave the same. What do you think is the best way forward, > keep this behavior in this new RTSN driver or remove the print from the > old drivers? I had a hunch this may be the case :) People invent local customs for this sort of "hello" messages in driver probe. Developers consider it useful because when you get logs from a user you can tell whether driver got probed or not immediately. But there's no agreed upon convention across networking drivers, and if we need to debug probing - the device driver core should be put to task to output more comprehensive information generically. Anyway, weak preference for removing the print, but no big deal.