diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-22 16:59:11 +0800 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2011-11-26 00:34:12 +0400 |
commit | 3b176b25a8146673ade4772d1edfe318caa6818a (patch) | |
tree | 05817f20a5d28812f793c5e3b5ef8aaa7147c2fa /drivers/power/z2_battery.c | |
parent | 8cfaaa811894a3ae2d7360a15a6cfccff3ebc7db (diff) | |
download | talos-op-linux-3b176b25a8146673ade4772d1edfe318caa6818a.tar.gz talos-op-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/z2_battery.c')
-rw-r--r-- | drivers/power/z2_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/z2_battery.c b/drivers/power/z2_battery.c index ae38c44ccd4e..636ebb2a0e80 100644 --- a/drivers/power/z2_battery.c +++ b/drivers/power/z2_battery.c @@ -218,7 +218,7 @@ static int __devinit z2_batt_probe(struct i2c_client *client, irq_set_irq_type(gpio_to_irq(info->charge_gpio), IRQ_TYPE_EDGE_BOTH); ret = request_irq(gpio_to_irq(info->charge_gpio), - z2_charge_switch_irq, IRQF_DISABLED, + z2_charge_switch_irq, 0, "AC Detect", charger); if (ret) goto err3; |