From: Jonathan Cameron <jic23@kernel.org>
To: Chris Lesiak <chris.lesiak@licor.com>,
linux-iio@vger.kernel.org,
Andrey Smirnov <andrew.smirnov@gmail.com>,
Nicola Corna <nicola@corna.info>
Subject: Re: [PATCH] iio: si7020: Swap data byte order
Date: Sun, 8 Nov 2015 15:57:10 +0000 [thread overview]
Message-ID: <563F70D6.6090007@kernel.org> (raw)
In-Reply-To: <5637d95f.kjNhlcFiM4VW/Nz7%chris.lesiak@licor.com>
On 02/11/15 21:45, Chris Lesiak wrote:
> From e983f08f5cdeb811fd59abfc5ed9b47cef647bf6 Mon Sep 17 00:00:00 2001
> From: Chris Lesiak <chris.lesiak@licor.com>
> Date: Mon, 2 Nov 2015 15:13:45 -0600
> Subject: [PATCH] iio: si7020: Swap data byte order
This is the email header, doesn't want to be repeated here as it'll then
end up in the patch description as well.
>
> The Silicon Labs Si7013, Si7020, and Si7021 family of I2C humidity and
> temperature sensors deliver 16 bit data high byte first.
>
> See the datasheet available at:
> https://www.silabs.com/Support%20Documents%2fTechnicalDocs%2fSi7020-A20.pdf
>
> But as documented in Documentation/i2c/smbus-protocol,
> i2c_smbus_read_word_data() expects the low byte first.
>
> Change the driver to use i2c_smbus_read_word_swapped to get correct byte
> order.
>
> Signed-off-by: Chris Lesiak <chris.lesiak@licor.com>
Hi Chris,
Andrey posted a previous patch for this, but was going to come back with a neater
version (what you have here pretty much!).
I've also cc'd Nicola who has some patches in the works for this driver.
Anyhow, applied to the fixes-togreg branch of iio.git and marked for stable.
Jonathan
> ---
> drivers/iio/humidity/si7020.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iio/humidity/si7020.c b/drivers/iio/humidity/si7020.c
> index 00aec56..d169e90 100644
> --- a/drivers/iio/humidity/si7020.c
> +++ b/drivers/iio/humidity/si7020.c
> @@ -50,10 +50,10 @@ static int si7020_read_raw(struct iio_dev *indio_dev,
>
> switch (mask) {
> case IIO_CHAN_INFO_RAW:
> - ret = i2c_smbus_read_word_data(*client,
> - chan->type == IIO_TEMP ?
> - SI7020CMD_TEMP_HOLD :
> - SI7020CMD_RH_HOLD);
> + ret = i2c_smbus_read_word_swapped(*client,
> + chan->type == IIO_TEMP ?
> + SI7020CMD_TEMP_HOLD :
> + SI7020CMD_RH_HOLD);
> if (ret < 0)
> return ret;
> *val = ret >> 2;
>
prev parent reply other threads:[~2015-11-08 15:57 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-02 21:45 [PATCH] iio: si7020: Swap data byte order Chris Lesiak
2015-11-08 15:57 ` Jonathan Cameron [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=563F70D6.6090007@kernel.org \
--to=jic23@kernel.org \
--cc=andrew.smirnov@gmail.com \
--cc=chris.lesiak@licor.com \
--cc=linux-iio@vger.kernel.org \
--cc=nicola@corna.info \
/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.