mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
mfd: max8907: Move to use request_irq by IRQF_NO_AUTOEN flag
This change is just to simplify the code, no actual functional changes. Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
80cf16de33
commit
bd8a097443
@ -228,11 +228,9 @@ static int max8907_i2c_probe(struct i2c_client *i2c,
|
||||
goto err_regmap_rtc;
|
||||
}
|
||||
|
||||
irq_set_status_flags(max8907->i2c_gen->irq, IRQ_NOAUTOEN);
|
||||
|
||||
ret = regmap_add_irq_chip(max8907->regmap_gen, max8907->i2c_gen->irq,
|
||||
IRQF_ONESHOT | IRQF_SHARED, -1,
|
||||
&max8907_chg_irq_chip,
|
||||
IRQF_ONESHOT | IRQF_SHARED | IRQF_NO_AUTOEN,
|
||||
-1, &max8907_chg_irq_chip,
|
||||
&max8907->irqc_chg);
|
||||
if (ret != 0) {
|
||||
dev_err(&i2c->dev, "failed to add chg irq chip: %d\n", ret);
|
||||
|
Loading…
Reference in New Issue
Block a user