Skip to content

Commit

Permalink
mdio: Demote print from info to debug in mdio_driver_register
Browse files Browse the repository at this point in the history
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 <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Florian Fainelli authored and David S. Miller committed Nov 14, 2016
1 parent d94d025 commit eb2ca35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ int mdio_driver_register(struct mdio_driver *drv)
struct mdio_driver_common *mdiodrv = &drv->mdiodrv;
int retval;

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

mdiodrv->driver.bus = &mdio_bus_type;
mdiodrv->driver.probe = mdio_probe;
Expand Down

0 comments on commit eb2ca35

Please sign in to comment.