]> git.baikalelectronics.ru Git - kernel.git/commit
spi: meson-spicc: fix memory leak in meson_spicc_remove
authorDongliang Mu <mudongliangabcd@gmail.com>
Tue, 20 Jul 2021 10:01:16 +0000 (18:01 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 22 Jul 2021 15:02:22 +0000 (16:02 +0100)
commit9b5de4f71e7297888bde65bf5acd57afddb6717b
tree1aaf8817f0950986af9d75547e4079db4517904e
parent3e50806d9102ecbd10488c5482c94034742a2518
spi: meson-spicc: fix memory leak in meson_spicc_remove

In meson_spicc_probe, the error handling code needs to clean up master
by calling spi_master_put, but the remove function does not have this
function call. This will lead to memory leak of spicc->master.

Reported-by: Dongliang Mu <mudongliangabcd@gmail.com>
Fixes: 00c733c3e352("spi: Add Meson SPICC driver")
Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>
Link: https://lore.kernel.org/r/20210720100116.1438974-1-mudongliangabcd@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-meson-spicc.c