From: Nicolas Saenz Julienne Date: Mon, 18 Jan 2021 12:32:38 +0000 (+0100) Subject: reset: raspberrypi: Release firmware handle on unbind X-Git-Tag: io_uring-5.13-2021-05-07~83^2~21^2~5 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=9419f7f41a7d27a558426397f3f6f1be2193e008;p=linux-block.git reset: raspberrypi: Release firmware handle on unbind Use devm_rpi_firmware_get() so as to make sure we release RPi's firmware interface when unbinding the device. Signed-off-by: Nicolas Saenz Julienne Reviewed-by: Florian Fainelli --- diff --git a/drivers/reset/reset-raspberrypi.c b/drivers/reset/reset-raspberrypi.c index 02f59c06f69b..fa23db554bcf 100644 --- a/drivers/reset/reset-raspberrypi.c +++ b/drivers/reset/reset-raspberrypi.c @@ -82,7 +82,7 @@ static int rpi_reset_probe(struct platform_device *pdev) return -ENOENT; } - fw = rpi_firmware_get(np); + fw = devm_rpi_firmware_get(&pdev->dev, np); of_node_put(np); if (!fw) return -EPROBE_DEFER;