diff options
author | Joe Perches <joe@perches.com> | 2010-08-17 03:55:04 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-19 03:04:33 -0400 |
commit | c6c759884b05c7449a19d39c763a7482180e2def (patch) | |
tree | d1b30a1928143cad6d6e5f651ccaa2501979f009 /drivers/net/sungem_phy.c | |
parent | 0b29b894b17747f7fa0c5668281c68b8cde7647b (diff) |
drivers/net/sungem: Use netdev_<level>, netif_<level> and pr_<level>
Use the current logging message styles.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sungem_phy.c')
-rw-r--r-- | drivers/net/sungem_phy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/sungem_phy.c b/drivers/net/sungem_phy.c index 78f8cee5fd74..4a4fac630337 100644 --- a/drivers/net/sungem_phy.c +++ b/drivers/net/sungem_phy.c | |||
@@ -1175,7 +1175,8 @@ int mii_phy_probe(struct mii_phy *phy, int mii_id) | |||
1175 | 1175 | ||
1176 | /* Read ID and find matching entry */ | 1176 | /* Read ID and find matching entry */ |
1177 | id = (phy_read(phy, MII_PHYSID1) << 16 | phy_read(phy, MII_PHYSID2)); | 1177 | id = (phy_read(phy, MII_PHYSID1) << 16 | phy_read(phy, MII_PHYSID2)); |
1178 | printk(KERN_DEBUG "PHY ID: %x, addr: %x\n", id, mii_id); | 1178 | printk(KERN_DEBUG KBUILD_MODNAME ": " "PHY ID: %x, addr: %x\n", |
1179 | id, mii_id); | ||
1179 | for (i=0; (def = mii_phy_table[i]) != NULL; i++) | 1180 | for (i=0; (def = mii_phy_table[i]) != NULL; i++) |
1180 | if ((id & def->phy_id_mask) == def->phy_id) | 1181 | if ((id & def->phy_id_mask) == def->phy_id) |
1181 | break; | 1182 | break; |