mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 11:50:43 +09:00
UPSTREAM: [media] media: rc: gpio-ir-recv: use devm_rc_register_device
Use of devm_rc_register_device 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 52ea799107)
Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
This commit is contained in:
committed by
Tao Huang
parent
315cfb4957
commit
746af9ae16
@@ -153,10 +153,10 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
|
||||
rc = rc_register_device(rcdev);
|
||||
rc = devm_rc_register_device(dev, rcdev);
|
||||
if (rc < 0) {
|
||||
dev_err(dev, "failed to register rc device (%d)\n", rc);
|
||||
goto err_register_rc_device;
|
||||
return rc;
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, gpio_dev);
|
||||
@@ -171,9 +171,6 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
|
||||
err_request_irq:
|
||||
rc_unregister_device(rcdev);
|
||||
rcdev = NULL;
|
||||
err_register_rc_device:
|
||||
return rc;
|
||||
}
|
||||
|
||||
@@ -182,7 +179,6 @@ static int gpio_ir_recv_remove(struct platform_device *pdev)
|
||||
struct gpio_rc_dev *gpio_dev = platform_get_drvdata(pdev);
|
||||
|
||||
free_irq(gpio_to_irq(gpio_dev->gpio_nr), gpio_dev);
|
||||
rc_unregister_device(gpio_dev->rcdev);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user