generic: ar8216: simplify phy features setup
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35518
This commit is contained in:
parent
9c1f95a416
commit
aa04441904
1 changed files with 6 additions and 11 deletions
|
@ -1791,12 +1791,13 @@ ar8216_config_init(struct phy_device *pdev)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_free_priv;
|
goto err_free_priv;
|
||||||
|
|
||||||
if (pdev->addr != 0) {
|
if (ar8xxx_has_gige(priv))
|
||||||
if (ar8xxx_has_gige(priv)) {
|
pdev->supported = SUPPORTED_1000baseT_Full;
|
||||||
pdev->supported |= SUPPORTED_1000baseT_Full;
|
else
|
||||||
pdev->advertising |= ADVERTISED_1000baseT_Full;
|
pdev->supported = SUPPORTED_100baseT_Full;
|
||||||
}
|
pdev->advertising = pdev->supported;
|
||||||
|
|
||||||
|
if (pdev->addr != 0) {
|
||||||
if (chip_is_ar8316(priv)) {
|
if (chip_is_ar8316(priv)) {
|
||||||
/* check if we're attaching to the switch twice */
|
/* check if we're attaching to the switch twice */
|
||||||
pdev = pdev->bus->phy_map[0];
|
pdev = pdev->bus->phy_map[0];
|
||||||
|
@ -1827,12 +1828,6 @@ ar8216_config_init(struct phy_device *pdev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ar8xxx_has_gige(priv))
|
|
||||||
pdev->supported = SUPPORTED_1000baseT_Full;
|
|
||||||
else
|
|
||||||
pdev->supported = SUPPORTED_100baseT_Full;
|
|
||||||
pdev->advertising = pdev->supported;
|
|
||||||
|
|
||||||
mutex_init(&priv->reg_mutex);
|
mutex_init(&priv->reg_mutex);
|
||||||
|
|
||||||
pdev->priv = priv;
|
pdev->priv = priv;
|
||||||
|
|
Loading…
Reference in a new issue