diff options
| author | Florian Fainelli <f.fainelli@gmail.com> | 2016-11-14 06:01:17 +0300 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2016-11-15 00:40:16 +0300 | 
| commit | eb2ca35f1814dad3ca547261eedfbbd0d65a0efc (patch) | |
| tree | cbf2b91f8356fdb301cee5b8972165c72cb6cd5e | |
| parent | d94d02547ef9043ac04484088f7a6cd264ad7972 (diff) | |
| download | linux-eb2ca35f1814dad3ca547261eedfbbd0d65a0efc.tar.xz | |
mdio: Demote print from info to debug in mdio_driver_register
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>
| -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 9c88e6749b9a..43c8fd46504b 100644 --- a/drivers/net/phy/mdio_device.c +++ b/drivers/net/phy/mdio_device.c @@ -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;  | 
