mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35560 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user