spi: txx9: drop clk_put for devm_clk_get in txx9spi_probe()

devm_clk_get() is used so there is no reason to explicitly
call clk_put() in txx9spi_probe() functions.

Fixes: 18e34d568e ('spi: txx9: Use devm_clk_get()')
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.og>
This commit is contained in:
Wei Yongjun 2013-12-20 10:15:45 +08:00 committed by Mark Brown
parent 18e34d568e
commit bdf0290ac7
1 changed files with 0 additions and 1 deletions

View File

@ -356,7 +356,6 @@ static int txx9spi_probe(struct platform_device *dev)
}
ret = clk_enable(c->clk);
if (ret) {
clk_put(c->clk);
c->clk = NULL;
goto exit;
}