Message ID | 20210603043726.3793876-2-dmitry.torokhov@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9a9b1a7b2b08aa64d2876e48f51c7fbbebd5723c |
Headers | show |
Series | [1/7] Input: cy8ctmg110_ts - rely on platform code to supply interrupt | expand |
On Thu, Jun 3, 2021 at 6:37 AM Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote: > Rely on the platform to set up interrupt polarity/type properly instead > of hard-coding falling edge. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Yours, Linus Walleij
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index 691f35f1bdd7..d83257284537 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c @@ -221,8 +221,7 @@ static int cy8ctmg110_probe(struct i2c_client *client, cy8ctmg110_set_sleepmode(ts, false); err = request_threaded_irq(client->irq, NULL, cy8ctmg110_irq_thread, - IRQF_TRIGGER_RISING | IRQF_ONESHOT, - "touch_reset_key", ts); + IRQF_ONESHOT, "touch_reset_key", ts); if (err < 0) { dev_err(&client->dev, "irq %d busy? error %d\n", client->irq, err);
Rely on the platform to set up interrupt polarity/type properly instead of hard-coding falling edge. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/touchscreen/cy8ctmg110_ts.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)