From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: raskar.shree97@gmail.com
Cc: "Jonathan Cameron" <jic23@kernel.org>,
"David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
skhan@linuxfoundation.org, david.hunter.linux@gmail.com,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v8 3/6] iio: proximity: rfd77402: Use kernel helper for result polling
Date: Thu, 29 Jan 2026 00:23:01 +0200 [thread overview]
Message-ID: <aXqMRZqezVz8qn_3@smile.fi.intel.com> (raw)
In-Reply-To: <20260128-b4-rfd77402_v5-v8-3-36388fe7b95e@gmail.com>
On Wed, Jan 28, 2026 at 11:21:50PM +0530, Shrikant Raskar via B4 Relay wrote:
> Replace the manually written polling loop with read_poll_timeout(),
> the kernel's standard helper for waiting on hardware status.This
> makes the code easier to read.
>
> Move the polling logic into a dedicated helper function, as it will
> be reused by future updates.
...
> -static int rfd77402_measure(struct i2c_client *client)
> +static int rfd77402_wait_for_result(struct rfd77402_data *data)
> {
> + struct i2c_client *client = data->client;
> + int val, ret;
Where is the newly introduced comment?
> + ret = read_poll_timeout(i2c_smbus_read_byte_data, val,
> + (val < 0) || (val & RFD77402_ICSR_RESULT),
> + 10 * USEC_PER_MSEC,
> + 10 * 10 * USEC_PER_MSEC,
> + false,
> + client, RFD77402_ICSR);
> + if (val < 0)
> + return val;
> +
> + return ret;
> +}
...
> - /*
> - * As per RFD77402 datasheet section '3.1.1 Single Measure',
> - * the suggested timeout value for single measure is 100ms.
> - */
???
See above.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2026-01-28 22:23 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-28 17:51 [PATCH v8 0/6] iio: proximity: Add interrupt support for RFD77402 Shrikant Raskar via B4 Relay
2026-01-28 17:51 ` [PATCH v8 1/6] iio: proximity: rfd77402: Reorder header includes Shrikant Raskar via B4 Relay
2026-01-29 17:52 ` Jonathan Cameron
2026-01-28 17:51 ` [PATCH v8 2/6] iio: proximity: rfd77402: Align polling timeout with datasheet Shrikant Raskar via B4 Relay
2026-01-28 22:21 ` Andy Shevchenko
2026-01-28 17:51 ` [PATCH v8 3/6] iio: proximity: rfd77402: Use kernel helper for result polling Shrikant Raskar via B4 Relay
2026-01-28 22:23 ` Andy Shevchenko [this message]
2026-01-29 17:48 ` Jonathan Cameron
2026-01-28 17:51 ` [PATCH v8 4/6] iio: proximity: rfd77402: Use devm-managed mutex initialization Shrikant Raskar via B4 Relay
2026-01-28 17:51 ` [PATCH v8 5/6] iio: proximity: rfd77402: Document device private data structure Shrikant Raskar via B4 Relay
2026-01-28 17:51 ` [PATCH v8 6/6] iio: proximity: rfd77402: Add interrupt handling support Shrikant Raskar via B4 Relay
2026-01-28 22:25 ` [PATCH v8 0/6] iio: proximity: Add interrupt support for RFD77402 Andy Shevchenko
2026-01-29 17:51 ` Jonathan Cameron
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=aXqMRZqezVz8qn_3@smile.fi.intel.com \
--to=andriy.shevchenko@intel.com \
--cc=andy@kernel.org \
--cc=david.hunter.linux@gmail.com \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=raskar.shree97@gmail.com \
--cc=skhan@linuxfoundation.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
all inboxes | Powered by JetHome®