diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-11-12 01:55:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-12 21:58:06 +0300 |
commit | 6ec259c1649928facd56bd9bc4c22a806e1f932a (patch) | |
tree | a52dd723a7acf285e91ec33b9937a1d6461b52b3 /drivers/net/phy/bcm7xxx.c | |
parent | 955a9d202f470019f42979f0d1caec98843e39ce (diff) | |
download | linux-6ec259c1649928facd56bd9bc4c22a806e1f932a.tar.xz |
net: phy: bcm7xxx: only show PHY revision once
bcm7xxx_28nm_config_init() can be called as frequently as needed by the
PHY library upon suspend/resume cycles and interface bring up/down, just
print the PHY revision once and for all in order not to spam kernel
logs.
Fixes: d8ebfed3f11b ("net: phy: bcm7xxx: utilize PHY revision in config_init")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/bcm7xxx.c')
-rw-r--r-- | drivers/net/phy/bcm7xxx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/phy/bcm7xxx.c b/drivers/net/phy/bcm7xxx.c index 437481be151d..e1ce0028565a 100644 --- a/drivers/net/phy/bcm7xxx.c +++ b/drivers/net/phy/bcm7xxx.c @@ -200,7 +200,8 @@ static int bcm7xxx_28nm_config_init(struct phy_device *phydev) u8 patch = PHY_BRCM_7XXX_PATCH(phydev->dev_flags); int ret = 0; - dev_info(&phydev->dev, "PHY revision: 0x%02x, patch: %d\n", rev, patch); + pr_info_once("%s: %s PHY revision: 0x%02x, patch: %d\n", + dev_name(&phydev->dev), phydev->drv->name, rev, patch); switch (rev) { case 0xa0: |