Commit b95e02b7 authored by Jingoo Han's avatar Jingoo Han Committed by Mark Brown

spi: omap2-mcspi: use devm_spi_register_master()

Use devm_spi_register_master() to make cleanup paths simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 5c4c5c7b
...@@ -1407,7 +1407,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev) ...@@ -1407,7 +1407,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev)
if (status < 0) if (status < 0)
goto disable_pm; goto disable_pm;
status = spi_register_master(master); status = devm_spi_register_master(&pdev->dev, master);
if (status < 0) if (status < 0)
goto disable_pm; goto disable_pm;
...@@ -1435,7 +1435,6 @@ static int omap2_mcspi_remove(struct platform_device *pdev) ...@@ -1435,7 +1435,6 @@ static int omap2_mcspi_remove(struct platform_device *pdev)
pm_runtime_put_sync(mcspi->dev); pm_runtime_put_sync(mcspi->dev);
pm_runtime_disable(&pdev->dev); pm_runtime_disable(&pdev->dev);
spi_unregister_master(master);
kfree(dma_channels); kfree(dma_channels);
return 0; return 0;
......
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