net: ethernet: nb8800: fix error handling of nb8800_probe()
In ops->reset() error handling case, clk_disable_unprepare() is missed before return from this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Acked-by: Mans Rullgard <mans@mansr.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
459421cc81
Коммит
9a7bae8a12
|
@ -1418,7 +1418,7 @@ static int nb8800_probe(struct platform_device *pdev)
|
|||
if (ops && ops->reset) {
|
||||
ret = ops->reset(dev);
|
||||
if (ret)
|
||||
goto err_free_dev;
|
||||
goto err_disable_clk;
|
||||
}
|
||||
|
||||
bus = devm_mdiobus_alloc(&pdev->dev);
|
||||
|
|
Загрузка…
Ссылка в новой задаче