linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jyoti Bhayana <jbhayana@google.com>
To: Jonathan Cameron <jic23@kernel.org>
Cc: Andriy Tryshnivskyy <andriy.tryshnivskyy@opensynergy.com>,
	Lars-Peter Clausen <lars@metafoo.de>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
	Vasyl.Vavrychuk@opensynergy.com
Subject: Re: [PATCH v3 0/1] iio/scmi: Add reading "raw" attribute.
Date: Mon, 4 Oct 2021 16:51:01 -0700	[thread overview]
Message-ID: <CA+=V6c34+VtYbUDG=NuY6YeyML23Tth2+fTjhvXpwMvrtkM5_Q@mail.gmail.com> (raw)
In-Reply-To: <20210930174043.0845f6ed@jic23-huawei>

Hi Andriy,

Please find my feedback below:

> @@ -286,6 +286,9 @@ static int scmi_iio_read_raw(struct iio_dev *iio_dev,
>         struct scmi_iio_priv *sensor = iio_priv(iio_dev);
>         s8 scale;
>         int ret;
> +       int err;


Why do we have two variables with a similar purpose of saving the
return value? Can't ret be used in this case instead of adding a new
one?


In the code below, why is the logic of enabling and disabling the
sensor in this function?  Generally the function to read the sensor
value is just used for the code to read the sensor values ? and not
enable/disable the sensor

>    case IIO_CHAN_INFO_RAW:
> +               sensor_config = FIELD_PREP(SCMI_SENS_CFG_SENSOR_ENABLED_MASK,
> +                                          SCMI_SENS_CFG_SENSOR_ENABLE);
> +               err = sensor->sensor_ops->config_set(
> +                       sensor->ph, sensor->sensor_info->id, sensor_config);
> +               if (err) {
> +                       dev_err(&iio_dev->dev,
> +                               "Error in enabling sensor %s err %d",
> +                               sensor->sensor_info->name, err);
> +                       return err;
> +               }
> +
> +               err = sensor->sensor_ops->reading_get_timestamped(
> +                       sensor->ph, sensor->sensor_info->id,
> +                       sensor->sensor_info->num_axis, readings);
> +               if (err) {
> +                       dev_err(&iio_dev->dev,
> +                               "Error in reading raw attribute for sensor %s err %d",
> +                               sensor->sensor_info->name, err);
> +                       return err;
> +               }
> +
> +               sensor_config = FIELD_PREP(SCMI_SENS_CFG_SENSOR_ENABLED_MASK,
> +                                          SCMI_SENS_CFG_SENSOR_DISABLE);
> +               err = sensor->sensor_ops->config_set(
> +                       sensor->ph, sensor->sensor_info->id, sensor_config);
> +               if (err) {
> +                       dev_err(&iio_dev->dev,
> +                               "Error in enabling sensor %s err %d",
> +                               sensor->sensor_info->name, err);
> +                       return err;
> +               }
> +               /* Check if raw value fits 32 bits */
> +               if (readings[ch->scan_index].value < INT_MIN ||
> +                   readings[ch->scan_index].value > INT_MAX)
> +                       return -ERANGE;
> +               /* Use 32-bit value, since practically there is no need in 64 bits */
> +               *val = (int)readings[ch->scan_index].value;
>
> +               return IIO_VAL_INT;


On Thu, Sep 30, 2021 at 9:36 AM Jonathan Cameron <jic23@kernel.org> wrote:
>
> On Tue, 28 Sep 2021 19:19:56 +0300
> Andriy Tryshnivskyy <andriy.tryshnivskyy@opensynergy.com> wrote:
>
> > This patch implements reading "raw" attribute.
> >
> > The patch is based on v5.14.
> >
> > Comparing to the previous version it has:
> > * adaptation for changes in structure scmi_iio_priv (no member named 'handle')
> >
> Ah.. If you have a case like this where you send out a new version because you've
> found an issue yourself, please also reply to the earlier version to say what the
> problem was.  That way no one reviews the wrong version :)
>
> Thanks,
>
> Jonathan
>
> > Any comments are very welcome.
> >
> > Thanks,
> > Andriy.
> >
> > Andriy Tryshnivskyy (1):
> >   iio/scmi: Add reading "raw" attribute.
> >
> >  drivers/iio/common/scmi_sensors/scmi_iio.c | 45 +++++++++++++++++++++-
> >  1 file changed, 44 insertions(+), 1 deletion(-)
> >
> >
> > base-commit: 7d2a07b769330c34b4deabeed939325c77a7ec2f
>

  reply	other threads:[~2021-10-04 23:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-28 16:19 [PATCH v3 0/1] iio/scmi: Add reading "raw" attribute Andriy Tryshnivskyy
2021-09-28 16:19 ` [PATCH v3 1/1] " Andriy Tryshnivskyy
2021-09-30 16:40 ` [PATCH v3 0/1] " Jonathan Cameron
2021-10-04 23:51   ` Jyoti Bhayana [this message]
2021-10-05 12:51     ` Vasyl Vavrychuk
2021-10-06  0:16       ` Jyoti Bhayana
2021-10-08 11:32         ` Andriy Tryshnivskyy

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='CA+=V6c34+VtYbUDG=NuY6YeyML23Tth2+fTjhvXpwMvrtkM5_Q@mail.gmail.com' \
    --to=jbhayana@google.com \
    --cc=Vasyl.Vavrychuk@opensynergy.com \
    --cc=andriy.tryshnivskyy@opensynergy.com \
    --cc=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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).