Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfcc2e35 authored by Laurentiu Palcu's avatar Laurentiu Palcu Committed by Mark Brown
Browse files

spi/rockchip: remove redundant call to spi_master_put()



The call to spi_master_put() in rockchip_spi_remove() is redundant since
the master is registered using devm_. This patch removes it.

Signed-off-by: default avatarLaurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent f114040e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -723,8 +723,6 @@ static int rockchip_spi_remove(struct platform_device *pdev)
	if (rs->dma_rx.ch)
		dma_release_channel(rs->dma_rx.ch);

	spi_master_put(master);

	return 0;
}