diff options
-rw-r--r-- | drivers/mfd/da903x.c | 2 | ||||
-rw-r--r-- | drivers/mfd/menelaus.c | 2 | ||||
-rw-r--r-- | drivers/mfd/twl6030-irq.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/da903x.c b/drivers/mfd/da903x.c index 2fadbaeb1cb1..1b79c37fd599 100644 --- a/drivers/mfd/da903x.c +++ b/drivers/mfd/da903x.c | |||
@@ -523,7 +523,7 @@ static int __devinit da903x_probe(struct i2c_client *client, | |||
523 | chip->ops->read_events(chip, &tmp); | 523 | chip->ops->read_events(chip, &tmp); |
524 | 524 | ||
525 | ret = request_irq(client->irq, da903x_irq_handler, | 525 | ret = request_irq(client->irq, da903x_irq_handler, |
526 | IRQF_DISABLED | IRQF_TRIGGER_FALLING, | 526 | IRQF_TRIGGER_FALLING, |
527 | "da903x", chip); | 527 | "da903x", chip); |
528 | if (ret) { | 528 | if (ret) { |
529 | dev_err(&client->dev, "failed to request irq %d\n", | 529 | dev_err(&client->dev, "failed to request irq %d\n", |
diff --git a/drivers/mfd/menelaus.c b/drivers/mfd/menelaus.c index 9cee8e7f0bcb..ded870e22155 100644 --- a/drivers/mfd/menelaus.c +++ b/drivers/mfd/menelaus.c | |||
@@ -1226,7 +1226,7 @@ static int menelaus_probe(struct i2c_client *client, | |||
1226 | menelaus_write_reg(MENELAUS_MCT_CTRL1, 0x73); | 1226 | menelaus_write_reg(MENELAUS_MCT_CTRL1, 0x73); |
1227 | 1227 | ||
1228 | if (client->irq > 0) { | 1228 | if (client->irq > 0) { |
1229 | err = request_irq(client->irq, menelaus_irq, IRQF_DISABLED, | 1229 | err = request_irq(client->irq, menelaus_irq, 0, |
1230 | DRIVER_NAME, menelaus); | 1230 | DRIVER_NAME, menelaus); |
1231 | if (err) { | 1231 | if (err) { |
1232 | dev_dbg(&client->dev, "can't get IRQ %d, err %d\n", | 1232 | dev_dbg(&client->dev, "can't get IRQ %d, err %d\n", |
diff --git a/drivers/mfd/twl6030-irq.c b/drivers/mfd/twl6030-irq.c index f94a04ca1d37..a17b42360e52 100644 --- a/drivers/mfd/twl6030-irq.c +++ b/drivers/mfd/twl6030-irq.c | |||
@@ -341,7 +341,7 @@ int twl6030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end) | |||
341 | /* install an irq handler to demultiplex the TWL6030 interrupt */ | 341 | /* install an irq handler to demultiplex the TWL6030 interrupt */ |
342 | init_completion(&irq_event); | 342 | init_completion(&irq_event); |
343 | 343 | ||
344 | status = request_irq(irq_num, handle_twl6030_pih, IRQF_DISABLED, | 344 | status = request_irq(irq_num, handle_twl6030_pih, 0, |
345 | "TWL6030-PIH", &irq_event); | 345 | "TWL6030-PIH", &irq_event); |
346 | if (status < 0) { | 346 | if (status < 0) { |
347 | pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status); | 347 | pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status); |