mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 10:56:11 +07:00
net: systemport: free dev before on error path
commit 0c630a66bf10991b0ef13d27c93d7545e692ef5b upstream.
On the error path, it should goto the error handling label to free
allocated memory rather than directly return.
Fixes: 31bc72d976
("net: systemport: fetch and use clock resources")
Signed-off-by: Pan Bian <bianpan2016@163.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20210120044423.1704-1-bianpan2016@163.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e018e57fd5
commit
6c19578d46
@ -2503,8 +2503,10 @@ static int bcm_sysport_probe(struct platform_device *pdev)
|
|||||||
priv = netdev_priv(dev);
|
priv = netdev_priv(dev);
|
||||||
|
|
||||||
priv->clk = devm_clk_get_optional(&pdev->dev, "sw_sysport");
|
priv->clk = devm_clk_get_optional(&pdev->dev, "sw_sysport");
|
||||||
if (IS_ERR(priv->clk))
|
if (IS_ERR(priv->clk)) {
|
||||||
return PTR_ERR(priv->clk);
|
ret = PTR_ERR(priv->clk);
|
||||||
|
goto err_free_netdev;
|
||||||
|
}
|
||||||
|
|
||||||
/* Allocate number of TX rings */
|
/* Allocate number of TX rings */
|
||||||
priv->tx_rings = devm_kcalloc(&pdev->dev, txq,
|
priv->tx_rings = devm_kcalloc(&pdev->dev, txq,
|
||||||
|
Loading…
Reference in New Issue
Block a user