mirror of https://gitee.com/openkylin/linux.git
mdio: Demote print from info to debug in mdio_device_register
While it is useful to know which MDIO device is being registered, demote the dev_info() to a dev_dbg(). 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>
This commit is contained in:
parent
5944701df9
commit
29b84f20e2
|
@ -67,7 +67,7 @@ int mdio_device_register(struct mdio_device *mdiodev)
|
|||
{
|
||||
int err;
|
||||
|
||||
dev_info(&mdiodev->dev, "mdio_device_register\n");
|
||||
dev_dbg(&mdiodev->dev, "mdio_device_register\n");
|
||||
|
||||
err = mdiobus_register_device(mdiodev);
|
||||
if (err)
|
||||
|
|
Loading…
Reference in New Issue