1
0
Fork 0

rtc: ingenic: Fix masking of error code

The code was returning -ENOENT on any error of platform_get_irq(), even
if it returned a different error.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Link: https://lore.kernel.org/r/20200505221336.222313-6-paul@crapouillou.net
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
alistair/sunxi64-5.8
Paul Cercueil 2020-05-06 00:13:35 +02:00 committed by Alexandre Belloni
parent 77d8f3c122
commit 15eeadd801
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ static int jz4740_rtc_probe(struct platform_device *pdev)
irq = platform_get_irq(pdev, 0);
if (irq < 0)
return -ENOENT;
return irq;
rtc->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(rtc->base))