Commit a24a9d7a authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller

net: eth: altera: Fix error return code in altera_tse_probe()

Fix to return error code -EINVAL from the error handling
case instead of 0, as done elsewhere in this function.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 68497a87
...@@ -1329,11 +1329,13 @@ static int altera_tse_probe(struct platform_device *pdev) ...@@ -1329,11 +1329,13 @@ static int altera_tse_probe(struct platform_device *pdev)
if (upper_32_bits(priv->rxdescmem_busaddr)) { if (upper_32_bits(priv->rxdescmem_busaddr)) {
dev_dbg(priv->device, dev_dbg(priv->device,
"SGDMA bus addresses greater than 32-bits\n"); "SGDMA bus addresses greater than 32-bits\n");
ret = -EINVAL;
goto err_free_netdev; goto err_free_netdev;
} }
if (upper_32_bits(priv->txdescmem_busaddr)) { if (upper_32_bits(priv->txdescmem_busaddr)) {
dev_dbg(priv->device, dev_dbg(priv->device,
"SGDMA bus addresses greater than 32-bits\n"); "SGDMA bus addresses greater than 32-bits\n");
ret = -EINVAL;
goto err_free_netdev; goto err_free_netdev;
} }
} else if (priv->dmaops && } else if (priv->dmaops &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment