diff mbox

[2/2] spi: qup: Add spi_master_put in remove function

Message ID 1462191244-30758-2-git-send-email-pramod.gurav@linaro.org
State New
Headers show

Commit Message

Pramod Gurav May 2, 2016, 12:14 p.m. UTC
Release memory allocated for spi master by calling spi_master_put in
.remove function.

Signed-off-by: Pramod Gurav <pramod.gurav@linaro.org>

---
 drivers/spi/spi-qup.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
1.8.2.1
diff mbox

Patch

diff --git a/drivers/spi/spi-qup.c b/drivers/spi/spi-qup.c
index e42ff61..c338ef1 100644
--- a/drivers/spi/spi-qup.c
+++ b/drivers/spi/spi-qup.c
@@ -1030,6 +1030,8 @@  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;
 }