diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-22 10:59:11 +0200 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2011-11-25 21:34:12 +0100 |
commit | 3b176b25a8146673ade4772d1edfe318caa6818a (patch) | |
tree | 05817f20a5d28812f793c5e3b5ef8aaa7147c2fa /drivers/power/wm97xx_battery.c | |
parent | bq27x00_battery: Fix OOPS caused by unregistring bq27x00 driver (diff) | |
download | linux-3b176b25a8146673ade4772d1edfe318caa6818a.tar.xz linux-3b176b25a8146673ade4772d1edfe318caa6818a.zip |
power_supply: Remove IRQF_DISABLED
Since commit [e58aa3d2: genirq: Run irq handlers with interrupts
disabled], We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler returns with
interrupts enabled (see commit [b738a50a: genirq: Warn when handler
enables interrupts]).
So now this flag is a NOOP and can be removed.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power/wm97xx_battery.c')
-rw-r--r-- | drivers/power/wm97xx_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/wm97xx_battery.c b/drivers/power/wm97xx_battery.c index 156559e56fa5..cf8681c1f8eb 100644 --- a/drivers/power/wm97xx_battery.c +++ b/drivers/power/wm97xx_battery.c @@ -196,7 +196,7 @@ static int __devinit wm97xx_bat_probe(struct platform_device *dev) if (ret) goto err2; ret = request_irq(gpio_to_irq(pdata->charge_gpio), - wm97xx_chrg_irq, IRQF_DISABLED, + wm97xx_chrg_irq, 0, "AC Detect", dev); if (ret) goto err2; |