diff options
author | Joe Perches <joe@perches.com> | 2012-06-09 07:49:07 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-11 16:58:24 -0700 |
commit | 8d242488ce4627dd7e6333caab56df11ea25e239 (patch) | |
tree | 61d464de218ba9cb22d15735a54b49d230068c16 /drivers/net/phy/fixed.c | |
parent | de74e92aa8a44d0b80a53601dc4f6dd6afcb8453 (diff) | |
download | linux-3.10-8d242488ce4627dd7e6333caab56df11ea25e239.tar.gz linux-3.10-8d242488ce4627dd7e6333caab56df11ea25e239.tar.bz2 linux-3.10-8d242488ce4627dd7e6333caab56df11ea25e239.zip |
phy: Use pr_<level>
Use a more current logging style.
Add pr_fmt and missing newlines.
Remove embedded prefixes.
Neaten phy_print_status to avoid using KERN_CONT.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/fixed.c')
-rw-r--r-- | drivers/net/phy/fixed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/fixed.c b/drivers/net/phy/fixed.c index 633680d0828..ba55adfc7aa 100644 --- a/drivers/net/phy/fixed.c +++ b/drivers/net/phy/fixed.c @@ -70,7 +70,7 @@ static int fixed_phy_update_regs(struct fixed_phy *fp) lpa |= LPA_10FULL; break; default: - printk(KERN_WARNING "fixed phy: unknown speed\n"); + pr_warn("fixed phy: unknown speed\n"); return -EINVAL; } } else { @@ -90,7 +90,7 @@ static int fixed_phy_update_regs(struct fixed_phy *fp) lpa |= LPA_10HALF; break; default: - printk(KERN_WARNING "fixed phy: unknown speed\n"); + pr_warn("fixed phy: unknown speed\n"); return -EINVAL; } } |