mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
backlight: pwm_bl: Free PWM requested by legacy API on error path
If pwm is requested by legacy pwm_request() and if the following backlight_device_register() call fails, add pwm_free() clean-up. Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
02f22c004f
commit
60d613d6ae
@ -328,6 +328,8 @@ static int pwm_backlight_probe(struct platform_device *pdev)
|
||||
if (IS_ERR(bl)) {
|
||||
dev_err(&pdev->dev, "failed to register backlight\n");
|
||||
ret = PTR_ERR(bl);
|
||||
if (pb->legacy)
|
||||
pwm_free(pb->pwm);
|
||||
goto err_alloc;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user