rtc: vt8500: remove useless label
err_return doesn't do anything special, simply return instead of goto. Link: https://lore.kernel.org/r/20191016201626.31309-2-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
8d6ac1cec7
commit
e979d0490a
|
@ -225,10 +225,9 @@ static int vt8500_rtc_probe(struct platform_device *pdev)
|
||||||
vt8500_rtc->rtc = devm_rtc_device_register(&pdev->dev, "vt8500-rtc",
|
vt8500_rtc->rtc = devm_rtc_device_register(&pdev->dev, "vt8500-rtc",
|
||||||
&vt8500_rtc_ops, THIS_MODULE);
|
&vt8500_rtc_ops, THIS_MODULE);
|
||||||
if (IS_ERR(vt8500_rtc->rtc)) {
|
if (IS_ERR(vt8500_rtc->rtc)) {
|
||||||
ret = PTR_ERR(vt8500_rtc->rtc);
|
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev,
|
||||||
"Failed to register RTC device -> %d\n", ret);
|
"Failed to register RTC device -> %d\n", ret);
|
||||||
goto err_return;
|
return PTR_ERR(vt8500_rtc->rtc);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = devm_request_irq(&pdev->dev, vt8500_rtc->irq_alarm,
|
ret = devm_request_irq(&pdev->dev, vt8500_rtc->irq_alarm,
|
||||||
|
@ -236,13 +235,10 @@ static int vt8500_rtc_probe(struct platform_device *pdev)
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&pdev->dev, "can't get irq %i, err %d\n",
|
dev_err(&pdev->dev, "can't get irq %i, err %d\n",
|
||||||
vt8500_rtc->irq_alarm, ret);
|
vt8500_rtc->irq_alarm, ret);
|
||||||
goto err_return;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_return:
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vt8500_rtc_remove(struct platform_device *pdev)
|
static int vt8500_rtc_remove(struct platform_device *pdev)
|
||||||
|
|
Loading…
Reference in New Issue