rtc: jz4740: Use dev_err_probe()
Use dev_err_probe() where it makes sense to simplify a bit the code. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Link: https://lore.kernel.org/r/20230129120442.22858-4-paul@crapouillou.net Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
d644b133f7
commit
ff6fd3770e
@ -329,17 +329,13 @@ static int jz4740_rtc_probe(struct platform_device *pdev)
|
||||
device_init_wakeup(dev, 1);
|
||||
|
||||
ret = dev_pm_set_wake_irq(dev, irq);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to set wake irq: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
return dev_err_probe(dev, ret, "Failed to set wake irq\n");
|
||||
|
||||
rtc->rtc = devm_rtc_allocate_device(dev);
|
||||
if (IS_ERR(rtc->rtc)) {
|
||||
ret = PTR_ERR(rtc->rtc);
|
||||
dev_err(dev, "Failed to allocate rtc device: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
if (IS_ERR(rtc->rtc))
|
||||
return dev_err_probe(dev, PTR_ERR(rtc->rtc),
|
||||
"Failed to allocate rtc device\n");
|
||||
|
||||
rtc->rtc->ops = &jz4740_rtc_ops;
|
||||
rtc->rtc->range_max = U32_MAX;
|
||||
@ -356,10 +352,8 @@ static int jz4740_rtc_probe(struct platform_device *pdev)
|
||||
|
||||
ret = devm_request_irq(dev, irq, jz4740_rtc_irq, 0,
|
||||
pdev->name, rtc);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to request rtc irq: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
return dev_err_probe(dev, ret, "Failed to request rtc irq\n");
|
||||
|
||||
if (of_device_is_system_power_controller(np)) {
|
||||
dev_for_power_off = dev;
|
||||
|
Loading…
Reference in New Issue
Block a user