rtc: ingenic: Fix masking of error code
authorPaul Cercueil <paul@crapouillou.net>
Tue, 5 May 2020 22:13:35 +0000 (00:13 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Mon, 11 May 2020 14:35:03 +0000 (16:35 +0200)
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>
drivers/rtc/rtc-jz4740.c

index 3193eb8bd131648866cbff6ed5cf80f1c494db7a..65e130726fc6d5fd985b61fc6dc3f287dee38a8e 100644 (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))