Skip to content

Commit eb2ca35

Browse files
ffainellidavem330
authored andcommitted
mdio: Demote print from info to debug in mdio_driver_register
While it is useful to know which MDIO driver is being registered, demote the pr_info() to a pr_debug(). Signed-off-by: Florian Fainelli <[email protected]> Reviewed-by: Andrew Lunn <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d94d025 commit eb2ca35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/phy/mdio_device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ int mdio_driver_register(struct mdio_driver *drv)
144144
struct mdio_driver_common *mdiodrv = &drv->mdiodrv;
145145
int retval;
146146

147-
pr_info("mdio_driver_register: %s\n", mdiodrv->driver.name);
147+
pr_debug("mdio_driver_register: %s\n", mdiodrv->driver.name);
148148

149149
mdiodrv->driver.bus = &mdio_bus_type;
150150
mdiodrv->driver.probe = mdio_probe;

0 commit comments

Comments
 (0)