diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-01-26 15:50:44 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-26 22:40:44 -0800 |
commit | c88460b778089525fbcf60b839b8db714406d119 (patch) | |
tree | 9ae0656e387888dc186ecd720286249189f8fb7d /drivers | |
parent | 7509edd6e95e5bef2d60b1ca0adc9859b8775694 (diff) | |
download | linux-c88460b778089525fbcf60b839b8db714406d119.tar.gz linux-c88460b778089525fbcf60b839b8db714406d119.tar.bz2 linux-c88460b778089525fbcf60b839b8db714406d119.zip |
net: stmmac: Log MAC address only once
Logging the MAC address on every if-up, is not really useful, and annoying when
there is no cable inserted and NetworkManager tries the ifup every 50 seconds.
Also change the log level from warning to info, as that is what it is.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index a395bb24cdf2..a2e7d2c96e36 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -1524,9 +1524,9 @@ static void stmmac_check_ether_addr(struct stmmac_priv *priv) priv->dev->dev_addr, 0); if (!is_valid_ether_addr(priv->dev->dev_addr)) eth_hw_addr_random(priv->dev); + pr_info("%s: device MAC address %pM\n", priv->dev->name, + priv->dev->dev_addr); } - pr_warn("%s: device MAC address %pM\n", priv->dev->name, - priv->dev->dev_addr); } /** |