From: Lukas Wunner <lu...@wunner.de>

commit a4729c3506c3eb1a6ca5c0289f4e7cafa4115065 upstream.

If the calls to devm_clk_get(), devm_spi_register_master() or
clk_prepare_enable() fail on probe of the Mikrotik RB4xx SPI driver,
the spi_master struct is erroneously not freed.

Fix by switching over to the new devm_spi_alloc_master() helper.

Fixes: 05aec357871f ("spi: Add SPI driver for Mikrotik RB4xx series boards")
Signed-off-by: Lukas Wunner <lu...@wunner.de>
Cc: <sta...@vger.kernel.org> # v4.2+: 5e844cc37a5c: spi: Introduce 
device-managed SPI controller allocation
Cc: <sta...@vger.kernel.org> # v4.2+
Cc: Bert Vermeulen <b...@biot.com>
Link: 
https://lore.kernel.org/r/369bf26d71927f60943b1d9d8f51810f00b0237d.1607286887.git.lu...@wunner.de
Signed-off-by: Mark Brown <broo...@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>

---
 drivers/spi/spi-rb4xx.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/spi/spi-rb4xx.c
+++ b/drivers/spi/spi-rb4xx.c
@@ -142,7 +142,7 @@ static int rb4xx_spi_probe(struct platfo
        if (IS_ERR(spi_base))
                return PTR_ERR(spi_base);
 
-       master = spi_alloc_master(&pdev->dev, sizeof(*rbspi));
+       master = devm_spi_alloc_master(&pdev->dev, sizeof(*rbspi));
        if (!master)
                return -ENOMEM;
 


Reply via email to