diff options
author | Wei Yongjun <weiyj.lk@gmail.com> | 2016-07-26 14:53:53 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-07-27 19:00:13 +0100 |
commit | 6678716751af24af09163aef54bbabb60c12e18b (patch) | |
tree | fb013b940ee41020ea476b6914c3117ffb32cfc0 /drivers/spi/spi-qup.c | |
parent | dec34e8b676e14d4df041e3335d6082b247b834e (diff) |
spi: qup: Remove spi_master_put in spi_qup_remove()
The call to spi_master_put() in spi_qup_remove() is redundant since
the master is registered using devm_spi_register_master() and no
reference hold by using spi_master_get() in spi_qup_remove().
This is detected by Coccinelle semantic patch.
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-qup.c')
-rw-r--r-- | drivers/spi/spi-qup.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-qup.c b/drivers/spi/spi-qup.c index c338ef1136f6..7f1555621f8e 100644 --- a/drivers/spi/spi-qup.c +++ b/drivers/spi/spi-qup.c @@ -1030,7 +1030,6 @@ static int spi_qup_remove(struct platform_device *pdev) pm_runtime_put_noidle(&pdev->dev); pm_runtime_disable(&pdev->dev); - spi_master_put(master); return 0; } |