diff options
Diffstat (limited to 'drivers/rtc/rtc-vr41xx.c')
-rw-r--r-- | drivers/rtc/rtc-vr41xx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index 3b5b4fa9a6e9..54e104e197e3 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
@@ -339,8 +339,10 @@ static int rtc_probe(struct platform_device *pdev) | |||
339 | goto err_device_unregister; | 339 | goto err_device_unregister; |
340 | 340 | ||
341 | pie_irq = platform_get_irq(pdev, 1); | 341 | pie_irq = platform_get_irq(pdev, 1); |
342 | if (pie_irq <= 0) | 342 | if (pie_irq <= 0) { |
343 | retval = -EBUSY; | ||
343 | goto err_free_irq; | 344 | goto err_free_irq; |
345 | } | ||
344 | 346 | ||
345 | retval = request_irq(pie_irq, rtclong1_interrupt, 0, | 347 | retval = request_irq(pie_irq, rtclong1_interrupt, 0, |
346 | "rtclong1", pdev); | 348 | "rtclong1", pdev); |