diff options
author | Ryosuke Saito <raitosyo@gmail.com> | 2017-04-21 12:13:17 +0900 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2017-05-01 11:52:24 +0200 |
commit | bb8fe8ea0067083e0452d5c67a4ab70ad72cc52f (patch) | |
tree | 49108c2be906fe6a859a86e95e839b2a21bb2978 /drivers/power | |
parent | 46c202b5f25fb6fbd4af60ded133fa745b3601b3 (diff) | |
download | linux-bb8fe8ea0067083e0452d5c67a4ab70ad72cc52f.tar.bz2 |
power: supply: sbs-battery: fix the sbs interrupt request
Since we use the default primary handler for the irq, IRQF_ONESHOT must
be set. Otherwise the request fails and the following errors are
displayed:
genirq: Threaded irq requested with handler=NULL and !ONESHOT for irq 129
sbs-battery 0-000b: Failed to request irq: -22
Signed-off-by: Ryosuke Saito <raitosyo@gmail.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/sbs-battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/sbs-battery.c b/drivers/power/supply/sbs-battery.c index 8bb2eb38eb1c..e07d570f504f 100644 --- a/drivers/power/supply/sbs-battery.c +++ b/drivers/power/supply/sbs-battery.c @@ -820,7 +820,7 @@ static int sbs_probe(struct i2c_client *client, } rc = devm_request_threaded_irq(&client->dev, irq, NULL, sbs_irq, - IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, dev_name(&client->dev), chip); if (rc) { dev_warn(&client->dev, "Failed to request irq: %d\n", rc); |