diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-15 23:52:09 +0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-10-24 16:09:13 +0400 |
commit | f742b96e42f886a415633a1fed0db2bb09d2baa3 (patch) | |
tree | 8b6de4288cd9e194b74383a1c69045722350f829 /drivers/mfd/da903x.c | |
parent | 49dcd070d0718a8b8db344d7b3d5e278362ecd86 (diff) | |
download | linux-f742b96e42f886a415633a1fed0db2bb09d2baa3.tar.xz |
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>
Diffstat (limited to 'drivers/mfd/da903x.c')
-rw-r--r-- | drivers/mfd/da903x.c | 2 |
1 files changed, 1 insertions, 1 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, chip->ops->read_events(chip, &tmp); ret = request_irq(client->irq, da903x_irq_handler, - IRQF_DISABLED | IRQF_TRIGGER_FALLING, + IRQF_TRIGGER_FALLING, "da903x", chip); if (ret) { dev_err(&client->dev, "failed to request irq %d\n", |