mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
UPSTREAM: [media] media: rc: gpio-ir-recv: use devm_gpio_request_one
Use of devm_gpio_request_one simplifies error unwinding.
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
(cherry picked from commit fcca09edb9)
Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
This commit is contained in:
committed by
Tao Huang
parent
e59f994f56
commit
315cfb4957
@@ -148,12 +148,10 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
|
||||
gpio_dev->gpio_nr = pdata->gpio_nr;
|
||||
gpio_dev->active_low = pdata->active_low;
|
||||
|
||||
rc = gpio_request(pdata->gpio_nr, "gpio-ir-recv");
|
||||
rc = devm_gpio_request_one(dev, pdata->gpio_nr, GPIOF_DIR_IN,
|
||||
"gpio-ir-recv");
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
rc = gpio_direction_input(pdata->gpio_nr);
|
||||
if (rc < 0)
|
||||
goto err_gpio_direction_input;
|
||||
|
||||
rc = rc_register_device(rcdev);
|
||||
if (rc < 0) {
|
||||
@@ -176,8 +174,6 @@ err_request_irq:
|
||||
rc_unregister_device(rcdev);
|
||||
rcdev = NULL;
|
||||
err_register_rc_device:
|
||||
err_gpio_direction_input:
|
||||
gpio_free(pdata->gpio_nr);
|
||||
return rc;
|
||||
}
|
||||
|
||||
@@ -187,7 +183,6 @@ static int gpio_ir_recv_remove(struct platform_device *pdev)
|
||||
|
||||
free_irq(gpio_to_irq(gpio_dev->gpio_nr), gpio_dev);
|
||||
rc_unregister_device(gpio_dev->rcdev);
|
||||
gpio_free(gpio_dev->gpio_nr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user