diff options
author | Mark Brown <broonie@linaro.org> | 2013-10-07 15:02:26 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-07 15:02:26 +0400 |
commit | dabefd56c6ee883bae0bdce4d5396c3f21286ab8 (patch) | |
tree | 2f629a4cfa71276b4afe947232f934f9b0887e7d /drivers/spi/spi-omap2-mcspi.c | |
parent | 3b3a80019ff194e86e740ec2f013a8915efd1ccf (diff) | |
parent | 2fe7e4add3e53df7c1b97e32076f8390dd81c6b3 (diff) | |
download | linux-dabefd56c6ee883bae0bdce4d5396c3f21286ab8.tar.xz |
Merge remote-tracking branch 'spi/topic/devm' into spi-qspi
Conflicts:
drivers/spi/spi-ti-qspi.c
Diffstat (limited to 'drivers/spi/spi-omap2-mcspi.c')
-rw-r--r-- | drivers/spi/spi-omap2-mcspi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/spi/spi-omap2-mcspi.c b/drivers/spi/spi-omap2-mcspi.c index ed4af4708d9a..2f7fd35a9ac8 100644 --- a/drivers/spi/spi-omap2-mcspi.c +++ b/drivers/spi/spi-omap2-mcspi.c @@ -1407,7 +1407,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev) if (status < 0) goto disable_pm; - status = spi_register_master(master); + status = devm_spi_register_master(&pdev->dev, master); if (status < 0) goto disable_pm; @@ -1435,7 +1435,6 @@ static int omap2_mcspi_remove(struct platform_device *pdev) pm_runtime_put_sync(mcspi->dev); pm_runtime_disable(&pdev->dev); - spi_unregister_master(master); kfree(dma_channels); return 0; |