diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-08-04 00:45:37 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-09-05 13:19:12 +0200 |
commit | 8a06513df55ef10baf80f55d13786eb29efa4fa6 (patch) | |
tree | 9a24ad2160aeadce3324cbe95899c3f65c00edb7 /drivers | |
parent | fd9061fb497926c0e62bf1c7ff727801499fd2ea (diff) |
rtc: rx8025: continue without alarm when irq request fails
Instead of bailing out, disable alarms and continue when
devm_request_threaded_irq() fails. This allows to still provide some
functionality.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/rtc/rtc-rx8025.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-rx8025.c b/drivers/rtc/rtc-rx8025.c index bf96f40fd200..ab5fb4fe2a83 100644 --- a/drivers/rtc/rtc-rx8025.c +++ b/drivers/rtc/rtc-rx8025.c @@ -533,8 +533,8 @@ static int rx8025_probe(struct i2c_client *client, rx8025_handle_irq, 0, "rx8025", client); if (err) { - dev_err(&client->dev, "unable to request IRQ\n"); - return err; + dev_err(&client->dev, "unable to request IRQ, alarms disabled\n"); + client->irq = 0; } } |