Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: Remove IRQF_DISABLED

This flag is a NOOP and can be removed now.

Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>

authored by

Yong Zhang and committed by
Samuel Ortiz
f742b96e 49dcd070

+3 -3
+1 -1
drivers/mfd/da903x.c
··· 523 523 chip->ops->read_events(chip, &tmp); 524 524 525 525 ret = request_irq(client->irq, da903x_irq_handler, 526 - IRQF_DISABLED | IRQF_TRIGGER_FALLING, 526 + IRQF_TRIGGER_FALLING, 527 527 "da903x", chip); 528 528 if (ret) { 529 529 dev_err(&client->dev, "failed to request irq %d\n",
+1 -1
drivers/mfd/menelaus.c
··· 1226 1226 menelaus_write_reg(MENELAUS_MCT_CTRL1, 0x73); 1227 1227 1228 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 1230 DRIVER_NAME, menelaus); 1231 1231 if (err) { 1232 1232 dev_dbg(&client->dev, "can't get IRQ %d, err %d\n",
+1 -1
drivers/mfd/twl6030-irq.c
··· 341 341 /* install an irq handler to demultiplex the TWL6030 interrupt */ 342 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 345 "TWL6030-PIH", &irq_event); 346 346 if (status < 0) { 347 347 pr_err("twl6030: could not claim irq%d: %d\n", irq_num, status);