generic: ar8216: use pr_* macros for kernel messages

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35554
master
Gabor Juhos 12 years ago
parent b8c796fbd7
commit 0b1fe07e8e
  1. 15
      target/linux/generic/files/drivers/net/phy/ar8216.c

@ -794,18 +794,18 @@ ar8316_hw_init(struct ar8216_priv *priv)
if (priv->port4_phy) { if (priv->port4_phy) {
/* value taken from Ubiquiti RouterStation Pro */ /* value taken from Ubiquiti RouterStation Pro */
newval = 0x81461bea; newval = 0x81461bea;
printk(KERN_INFO "ar8316: Using port 4 as PHY\n"); pr_info("ar8316: Using port 4 as PHY\n");
} else { } else {
newval = 0x01261be2; 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) { } else if (priv->phy->interface == PHY_INTERFACE_MODE_GMII) {
/* value taken from AVM Fritz!Box 7390 sources */ /* value taken from AVM Fritz!Box 7390 sources */
newval = 0x010e5b71; newval = 0x010e5b71;
} else { } else {
/* no known value for phy interface */ /* no known value for phy interface */
printk(KERN_ERR "ar8316: unsupported mii mode: %d.\n", pr_err("ar8316: unsupported mii mode: %d.\n",
priv->phy->interface); priv->phy->interface);
return -EINVAL; return -EINVAL;
} }
@ -1689,9 +1689,8 @@ ar8216_id_chip(struct ar8216_priv *priv)
priv->chip = &ar8327_chip; priv->chip = &ar8327_chip;
break; break;
default: default:
printk(KERN_DEBUG pr_err("ar8216: Unknown Atheros device [ver=%d, rev=%d]\n",
"ar8216: Unknown Atheros device [ver=%d, rev=%d]\n", priv->chip_ver, priv->chip_rev);
priv->chip_ver, priv->chip_rev);
return -ENODEV; return -ENODEV;
} }
@ -1900,7 +1899,7 @@ ar8216_config_init(struct phy_device *pdev)
if (ret) if (ret)
goto err_free_priv; 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); pdev->attached_dev->name, swdev->name);
priv->init = true; priv->init = true;

Loading…
Cancel
Save