From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Jonathan Cameron <jic23@kernel.org>,
linux-iio@vger.kernel.org, Lars-Peter Clausen <lars@metafoo.de>,
Peter Meerwald-Stadler <pmeerw@pmeerw.net>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Eddie James <eajames@linux.ibm.com>
Subject: [PATCH v1] iio: pressure: dps310: Use get_unaligned_beXX()
Date: Mon, 26 Oct 2020 20:05:15 +0200 [thread overview]
Message-ID: <20201026180515.19680-1-andriy.shevchenko@linux.intel.com> (raw)
This makes the driver code slightly easier to read.
Cc: Eddie James <eajames@linux.ibm.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/iio/pressure/dps310.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/iio/pressure/dps310.c b/drivers/iio/pressure/dps310.c
index 0730380ceb69..6a21cb5d3d37 100644
--- a/drivers/iio/pressure/dps310.c
+++ b/drivers/iio/pressure/dps310.c
@@ -127,7 +127,7 @@ static int dps310_get_coefs(struct dps310_data *data)
c0 = (coef[0] << 4) | (coef[1] >> 4);
data->c0 = sign_extend32(c0, 11);
- c1 = ((coef[1] & GENMASK(3, 0)) << 8) | coef[2];
+ c1 = get_unaligned_be16(&coef[1]) & GENMASK(11, 0);
data->c1 = sign_extend32(c1, 11);
/*
@@ -138,22 +138,22 @@ static int dps310_get_coefs(struct dps310_data *data)
c00 = (coef[3] << 12) | (coef[4] << 4) | (coef[5] >> 4);
data->c00 = sign_extend32(c00, 19);
- c10 = ((coef[5] & GENMASK(3, 0)) << 16) | (coef[6] << 8) | coef[7];
+ c10 = get_unaligned_be24(&coef[5]) & GENMASK(19, 0);
data->c10 = sign_extend32(c10, 19);
- c01 = (coef[8] << 8) | coef[9];
+ c01 = get_unaligned_be16(&coef[8]);
data->c01 = sign_extend32(c01, 15);
- c11 = (coef[10] << 8) | coef[11];
+ c11 = get_unaligned_be16(&coef[10]);
data->c11 = sign_extend32(c11, 15);
- c20 = (coef[12] << 8) | coef[13];
+ c20 = get_unaligned_be16(&coef[12]);
data->c20 = sign_extend32(c20, 15);
- c21 = (coef[14] << 8) | coef[15];
+ c21 = get_unaligned_be16(&coef[14]);
data->c21 = sign_extend32(c21, 15);
- c30 = (coef[16] << 8) | coef[17];
+ c30 = get_unaligned_be16(&coef[16]);
data->c30 = sign_extend32(c30, 15);
return 0;
@@ -323,7 +323,7 @@ static int dps310_read_pres_raw(struct dps310_data *data)
if (rc < 0)
goto done;
- raw = (val[0] << 16) | (val[1] << 8) | val[2];
+ raw = get_unaligned_be24(&val[0]);
data->pressure_raw = sign_extend32(raw, 23);
done:
@@ -342,7 +342,7 @@ static int dps310_read_temp_ready(struct dps310_data *data)
if (rc < 0)
return rc;
- raw = (val[0] << 16) | (val[1] << 8) | val[2];
+ raw = get_unaligned_be24(&val[0]);
data->temp_raw = sign_extend32(raw, 23);
return 0;
--
2.28.0
next reply other threads:[~2020-10-26 18:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-26 18:05 Andy Shevchenko [this message]
2020-10-29 15:25 ` [PATCH v1] iio: pressure: dps310: Use get_unaligned_beXX() Jonathan Cameron
2020-10-29 17:13 ` Andy Shevchenko
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=20201026180515.19680-1-andriy.shevchenko@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=eajames@linux.ibm.com \
--cc=jic23@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=pmeerw@pmeerw.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.