generic: ar8216: don't use ethernet device name in register_switch

The switches are accessed via an MDIO bus. Set the alias
to the name of the MDIO bus, and show that in the message
along with the name of the switch switch device.

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

SVN-Revision: 35560
This commit is contained in:
Gabor Juhos 2013-02-11 16:11:31 +00:00
parent 3f3eba88f6
commit 9c86d268eb

View File

@ -1885,12 +1885,13 @@ ar8216_config_init(struct phy_device *phydev)
}
swdev = &priv->dev;
ret = register_switch(swdev, phydev->attached_dev);
swdev->alias = dev_name(&priv->mii_bus->dev);
ret = register_switch(swdev, NULL);
if (ret)
goto err;
pr_info("%s: %s switch driver attached.\n",
phydev->attached_dev->name, swdev->name);
pr_info("%s: %s switch registered on %s\n",
swdev->devname, swdev->name, dev_name(&priv->mii_bus->dev));
priv->init = true;