1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 05:11:46 +02:00

generic: ar8216: simplify ar8216_config_init

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30853 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2012-03-08 10:21:08 +00:00
parent c9de293cbb
commit 1130aa078f

View File

@ -892,34 +892,24 @@ ar8216_config_init(struct phy_device *pdev)
swdev->vlans = AR8216_NUM_VLANS;
}
if ((ret = register_switch(&priv->dev, pdev->attached_dev)) < 0) {
kfree(priv);
goto done;
}
ret = register_switch(&priv->dev, pdev->attached_dev);
if (ret)
goto err_free_priv;
priv->init = true;
if (priv->chip == AR8316) {
ret = ar8316_hw_init(priv);
if (ret) {
kfree(priv);
goto done;
}
}
if (priv->chip == AR8236) {
ret = 0;
if (priv->chip == AR8236)
ret = ar8236_hw_init(priv);
if (ret) {
kfree(priv);
goto done;
}
}
else if (priv->chip == AR8316)
ret = ar8316_hw_init(priv);
if (ret)
goto err_free_priv;
ret = ar8216_reset_switch(&priv->dev);
if (ret) {
kfree(priv);
goto done;
}
if (ret)
goto err_free_priv;
dev->phy_ptr = priv;
@ -936,7 +926,10 @@ ar8216_config_init(struct phy_device *pdev)
priv->init = false;
done:
return 0;
err_free_priv:
kfree(priv);
return ret;
}