diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-11 13:14:00 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-11 13:14:00 +0000 |
commit | 0b1fe07e8e89fcee03ea943389b81e7fd38b8c77 (patch) | |
tree | 69aea8912c260864f65006cfc03576446d370500 /target/linux/generic/files | |
parent | b8c796fbd75df2c0a83cd5601dce16978ba9714f (diff) | |
download | mtk-20170518-0b1fe07e8e89fcee03ea943389b81e7fd38b8c77.zip mtk-20170518-0b1fe07e8e89fcee03ea943389b81e7fd38b8c77.tar.gz mtk-20170518-0b1fe07e8e89fcee03ea943389b81e7fd38b8c77.tar.bz2 |
generic: ar8216: use pr_* macros for kernel messages
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35554
Diffstat (limited to 'target/linux/generic/files')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/ar8216.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c index c463108..a34a749 100644 --- a/target/linux/generic/files/drivers/net/phy/ar8216.c +++ b/target/linux/generic/files/drivers/net/phy/ar8216.c @@ -794,18 +794,18 @@ ar8316_hw_init(struct ar8216_priv *priv) if (priv->port4_phy) { /* value taken from Ubiquiti RouterStation Pro */ newval = 0x81461bea; - printk(KERN_INFO "ar8316: Using port 4 as PHY\n"); + pr_info("ar8316: Using port 4 as PHY\n"); } else { newval = 0x01261be2; - printk(KERN_INFO "ar8316: Using port 4 as switch port\n"); + pr_info("ar8316: Using port 4 as switch port\n"); } } else if (priv->phy->interface == PHY_INTERFACE_MODE_GMII) { /* value taken from AVM Fritz!Box 7390 sources */ newval = 0x010e5b71; } else { /* no known value for phy interface */ - printk(KERN_ERR "ar8316: unsupported mii mode: %d.\n", - priv->phy->interface); + pr_err("ar8316: unsupported mii mode: %d.\n", + priv->phy->interface); return -EINVAL; } @@ -1689,9 +1689,8 @@ ar8216_id_chip(struct ar8216_priv *priv) priv->chip = &ar8327_chip; break; default: - printk(KERN_DEBUG - "ar8216: Unknown Atheros device [ver=%d, rev=%d]\n", - priv->chip_ver, priv->chip_rev); + pr_err("ar8216: Unknown Atheros device [ver=%d, rev=%d]\n", + priv->chip_ver, priv->chip_rev); return -ENODEV; } @@ -1900,7 +1899,7 @@ ar8216_config_init(struct phy_device *pdev) if (ret) goto err_free_priv; - printk(KERN_INFO "%s: %s switch driver attached.\n", + pr_info("%s: %s switch driver attached.\n", pdev->attached_dev->name, swdev->name); priv->init = true; |