From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Martin Kepplinger <martink@posteo.de>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] input: misc: bma150: use sign_extend32() for sign extending
Date: Mon, 6 Jul 2015 15:52:58 -0700 [thread overview]
Message-ID: <20150706225258.GC32140@dtor-ws> (raw)
In-Reply-To: <1435878781-1828-1-git-send-email-martink@posteo.de>
On Fri, Jul 03, 2015 at 01:13:01AM +0200, Martin Kepplinger wrote:
> Despite it's name, sign_extend32() is used for 16 bit values aswell.
>
> Signed-off-by: Martin Kepplinger <martink@posteo.de>
Applied, thank you.
> ---
> drivers/input/misc/bma150.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/input/misc/bma150.c b/drivers/input/misc/bma150.c
> index b36831c..c278049 100644
> --- a/drivers/input/misc/bma150.c
> +++ b/drivers/input/misc/bma150.c
> @@ -333,10 +333,9 @@ static void bma150_report_xyz(struct bma150_data *bma150)
> y = ((0xc0 & data[2]) >> 6) | (data[3] << 2);
> z = ((0xc0 & data[4]) >> 6) | (data[5] << 2);
>
> - /* sign extension */
> - x = (s16) (x << 6) >> 6;
> - y = (s16) (y << 6) >> 6;
> - z = (s16) (z << 6) >> 6;
> + x = sign_extend32(x, 9);
> + y = sign_extend32(y, 9);
> + z = sign_extend32(z, 9);
>
> input_report_abs(bma150->input, ABS_X, x);
> input_report_abs(bma150->input, ABS_Y, y);
> --
> 2.1.4
>
--
Dmitry
prev parent reply other threads:[~2015-07-06 22:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-02 23:13 [PATCH] input: misc: bma150: use sign_extend32() for sign extending Martin Kepplinger
2015-07-06 22:52 ` 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=20150706225258.GC32140@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martink@posteo.de \
/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