]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
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)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Mon, 20 Sep 2021 16:50:11 +0000 (18:50 +0200)
BugLink: https://bugs.launchpad.net/bugs/1941798
commit 8311ee2164c5cd1b63a601ea366f540eae89f10e upstream.

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: 454fa271bc4e("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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kelsey Skunberg <kelsey.skunberg@canonical.com>
drivers/spi/spi-meson-spicc.c

index f3f10443f9e26f3fee9b67827d07758157f3a081..3c841ae0a3e914424646acb336d9b22abdf908d1 100644 (file)
@@ -597,6 +597,8 @@ static int meson_spicc_remove(struct platform_device *pdev)
 
        clk_disable_unprepare(spicc->core);
 
+       spi_master_put(spicc->master);
+
        return 0;
 }