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:
Wei Yongjun 2016-07-19 11:33:10 +00:00 коммит произвёл David S. Miller
Родитель 459421cc81
Коммит 9a7bae8a12
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);