diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2017-01-07 07:27:59 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-09 00:14:45 +0100 |
commit | 29b84f20e2c59317db133d5dab96bbf500714227 (patch) | |
tree | 540cee9c354d8318315d230ec3e2f89aea819791 | |
parent | net: remove useless memset's in drivers get_stats64 (diff) | |
download | linux-29b84f20e2c59317db133d5dab96bbf500714227.tar.xz linux-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>
-rw-r--r-- | drivers/net/phy/mdio_device.c | 2 |
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) |