mdio: Demote print from info to debug in mdio_device_register
authorFlorian Fainelli <f.fainelli@gmail.com>
Sat, 7 Jan 2017 06:27:59 +0000 (22:27 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 8 Jan 2017 23:14:45 +0000 (18:14 -0500)
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>
drivers/net/phy/mdio_device.c

index 43c8fd4..fc3aaaa 100644 (file)
@@ -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)