From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Steve Twiss <stwiss.opensource@diasemi.com>
Cc: LINUX-INPUT <linux-input@vger.kernel.org>,
LINUXKERNEL <linux-kernel@vger.kernel.org>,
David Dajun Chen <david.chen@diasemi.com>,
Support Opensource <support.opensource@diasemi.com>
Subject: Re: [PATCH V1] input: da9063: report KEY_POWER instead of KEY_SLEEP during power key-press
Date: Wed, 9 Dec 2015 09:17:04 -0800 [thread overview]
Message-ID: <20151209171704.GB27131@dtor-ws> (raw)
In-Reply-To: <20151208180554.F29B93FB25@swsrvapps-01.diasemi.com>
On Tue, Dec 08, 2015 at 05:55:05PM +0000, Steve Twiss wrote:
> From: Steve Twiss <stwiss.opensource@diasemi.com>
>
> Stop reporting KEY_SLEEP for a short key-press and report KEY_POWER instead
> This change applied to both DA9063 and DA9062 ONKEY drivers.
You need to explain why this change is needed.
>
> Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com>
>
> ---
>
> This patch applies against linux-next and v4.4-rc4
>
> Regards,
> Steve
>
>
> drivers/input/misc/da9063_onkey.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/input/misc/da9063_onkey.c b/drivers/input/misc/da9063_onkey.c
> index 8eb697d..bb863e0 100644
> --- a/drivers/input/misc/da9063_onkey.c
> +++ b/drivers/input/misc/da9063_onkey.c
> @@ -179,13 +179,13 @@ static irqreturn_t da9063_onkey_irq_handler(int irq, void *data)
> input_report_key(onkey->input, KEY_POWER, 1);
> input_sync(onkey->input);
> schedule_delayed_work(&onkey->work, 0);
> - dev_dbg(onkey->dev, "KEY_POWER pressed.\n");
> + dev_dbg(onkey->dev, "KEY_POWER long press.\n");
> } else {
> - input_report_key(onkey->input, KEY_SLEEP, 1);
> + input_report_key(onkey->input, KEY_POWER, 1);
> input_sync(onkey->input);
> - input_report_key(onkey->input, KEY_SLEEP, 0);
> + input_report_key(onkey->input, KEY_POWER, 0);
> input_sync(onkey->input);
> - dev_dbg(onkey->dev, "KEY_SLEEP pressed.\n");
> + dev_dbg(onkey->dev, "KEY_POWER short press.\n");
> }
>
> return IRQ_HANDLED;
> --
> end-of-patch for PATCH V1
>
--
Dmitry
prev parent reply other threads:[~2015-12-09 17:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-08 17:55 [PATCH V1] input: da9063: report KEY_POWER instead of KEY_SLEEP during power key-press Steve Twiss
2015-12-09 17:17 ` Dmitry Torokhov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151209171704.GB27131@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=david.chen@diasemi.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=stwiss.opensource@diasemi.com \
--cc=support.opensource@diasemi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).