generic: ar8216: don't probe the chip multiple times
It is only needed when the private data is allocated. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35538 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
e04207b25a
commit
19f4475eb9
|
@ -1780,17 +1780,17 @@ ar8216_config_init(struct phy_device *pdev)
|
||||||
priv = kzalloc(sizeof(struct ar8216_priv), GFP_KERNEL);
|
priv = kzalloc(sizeof(struct ar8216_priv), GFP_KERNEL);
|
||||||
if (priv == NULL)
|
if (priv == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
priv->mii_bus = pdev->bus;
|
priv->mii_bus = pdev->bus;
|
||||||
priv->read = ar8216_mii_read;
|
priv->read = ar8216_mii_read;
|
||||||
priv->write = ar8216_mii_write;
|
priv->write = ar8216_mii_write;
|
||||||
|
|
||||||
priv->phy = pdev;
|
|
||||||
|
|
||||||
ret = ar8216_id_chip(priv);
|
ret = ar8216_id_chip(priv);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_free_priv;
|
goto err_free_priv;
|
||||||
|
}
|
||||||
|
|
||||||
|
priv->phy = pdev;
|
||||||
|
|
||||||
if (ar8xxx_has_gige(priv))
|
if (ar8xxx_has_gige(priv))
|
||||||
pdev->supported = SUPPORTED_1000baseT_Full;
|
pdev->supported = SUPPORTED_1000baseT_Full;
|
||||||
|
|
Loading…
Reference in New Issue