soc: bcm: raspberrypi-power: 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 <nsaenzjulienne@suse.de> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
This commit is contained in:
parent
9419f7f41a
commit
78add6cba7
|
@ -177,7 +177,7 @@ static int rpi_power_probe(struct platform_device *pdev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
rpi_domains->fw = rpi_firmware_get(fw_np);
|
||||
rpi_domains->fw = devm_rpi_firmware_get(&pdev->dev, fw_np);
|
||||
of_node_put(fw_np);
|
||||
if (!rpi_domains->fw)
|
||||
return -EPROBE_DEFER;
|
||||
|
|
Loading…
Reference in New Issue