From: Jonathan Cameron <jic23@kernel.org>
To: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Cc: linux-iio@vger.kernel.org, jramirez@baylibre.com
Subject: Re: [PATCH] iio: imu: st_lsm6dsx: add error logs to st_lsm6dsx_read_fifo()
Date: Sun, 15 Jul 2018 10:11:51 +0100 [thread overview]
Message-ID: <20180715101151.7a48b309@archlinux> (raw)
In-Reply-To: <20180711221512.20366-1-lorenzo.bianconi@redhat.com>
On Thu, 12 Jul 2018 00:15:12 +0200
Lorenzo Bianconi <lorenzo.bianconi@redhat.com> wrote:
> Add debug info to error conditions in st_lsm6dsx_read_fifo routine
>
> Suggested-by: Jorge Ramirez-Ortiz <jramirez@baylibre.com>
> Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Applied to the togreg branch of iio.git and pushed out as testing for
the autobuilders to play with it.
Thanks,
Jonathan
> ---
> drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> index 4994f920a836..7589f2ad1dae 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> @@ -298,8 +298,11 @@ static int st_lsm6dsx_read_fifo(struct st_lsm6dsx_hw *hw)
> err = regmap_bulk_read(hw->regmap,
> hw->settings->fifo_ops.fifo_diff.addr,
> &fifo_status, sizeof(fifo_status));
> - if (err < 0)
> + if (err < 0) {
> + dev_err(hw->dev, "failed to read fifo status (err=%d)\n",
> + err);
> return err;
> + }
>
> if (fifo_status & cpu_to_le16(ST_LSM6DSX_FIFO_EMPTY_MASK))
> return 0;
> @@ -313,8 +316,12 @@ static int st_lsm6dsx_read_fifo(struct st_lsm6dsx_hw *hw)
>
> for (read_len = 0; read_len < fifo_len; read_len += pattern_len) {
> err = st_lsm6dsx_read_block(hw, hw->buff, pattern_len);
> - if (err < 0)
> + if (err < 0) {
> + dev_err(hw->dev,
> + "failed to read pattern from fifo (err=%d)\n",
> + err);
> return err;
> + }
>
> /*
> * Data are written to the FIFO with a specific pattern
> @@ -385,8 +392,11 @@ static int st_lsm6dsx_read_fifo(struct st_lsm6dsx_hw *hw)
>
> if (unlikely(reset_ts)) {
> err = st_lsm6dsx_reset_hw_ts(hw);
> - if (err < 0)
> + if (err < 0) {
> + dev_err(hw->dev, "failed to reset hw ts (err=%d)\n",
> + err);
> return err;
> + }
> }
> return read_len;
> }
prev parent reply other threads:[~2018-07-15 9:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-11 22:15 [PATCH] iio: imu: st_lsm6dsx: add error logs to st_lsm6dsx_read_fifo() Lorenzo Bianconi
2018-07-15 9:11 ` 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=20180715101151.7a48b309@archlinux \
--to=jic23@kernel.org \
--cc=jramirez@baylibre.com \
--cc=linux-iio@vger.kernel.org \
--cc=lorenzo.bianconi@redhat.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 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.