aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/mdio_device.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2017-01-06 22:27:59 -0800
committerDavid S. Miller <davem@davemloft.net>2017-01-08 18:14:45 -0500
commit29b84f20e2c59317db133d5dab96bbf500714227 (patch)
tree540cee9c354d8318315d230ec3e2f89aea819791 /drivers/net/phy/mdio_device.c
parentnet: remove useless memset's in drivers get_stats64 (diff)
downloadlinux-dev-29b84f20e2c59317db133d5dab96bbf500714227.tar.xz
linux-dev-29b84f20e2c59317db133d5dab96bbf500714227.zip
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>
Diffstat (limited to 'drivers/net/phy/mdio_device.c')
-rw-r--r--drivers/net/phy/mdio_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/mdio_device.c b/drivers/net/phy/mdio_device.c
index 43c8fd46504b..fc3aaaa36b1d 100644
--- a/drivers/net/phy/mdio_device.c
+++ b/drivers/net/phy/mdio_device.c
@@ -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)