Linux-IIO Archive mirror
 help / color / mirror / Atom feed
From: Vasileios Amoiridis <vassilisamir@gmail.com>
To: Vasileios Amoiridis <vassilisamir@gmail.com>
Cc: jic23@kernel.org, lars@metafoo.de,
	andriy.shevchenko@linux.intel.com, ang.iglesiasg@gmail.com,
	mazziesaccount@gmail.com, ak@it-klinger.de,
	petre.rodan@subdimension.ro, phil@raspberrypi.com,
	579lpy@gmail.com, linus.walleij@linaro.org,
	semen.protsenko@linaro.org, linux-iio@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/9] iio: pressure: bmp280: Add triggered buffer support and
Date: Wed, 8 May 2024 18:54:44 +0200	[thread overview]
Message-ID: <20240508165444.GA144826@vamoiridPC> (raw)
In-Reply-To: <20240508163425.143831-1-vassilisamir@gmail.com>

On Wed, May 08, 2024 at 06:34:16PM +0200, Vasileios Amoiridis wrote:
> Based on upstream master with the previous patches of this series applied
> as well.
> 
> IMPORTANT NOTE: There is a fix queued up for this driver here [1]. It is going
> to conflict with PATCH [7-9/9]. The previous patches should be fine. The
> solution should be quite trivial with minor changes in all 3 PATCH [7-9/9].
> When it is deemed necessary I can resubmit the patches or help with resolving
> the issue.
> 
> Changes in v6:
> 
> PATCH [1-3/9]: new:
> 	- split of PATCH [5/10] of v5 according to proposal here [2].
> 
> PATCH [4/9]: new:
> 	- split of PATCH [6/10] of v5 according to proposal here [3].
> 
> PATCH [6/9]:
> 	- Removed mutex_lock() and added guard(mutex) to
> 	  bmp580_nvmem_{read/write}() functions as well.
> 
> PATCH [9/9]:
> 	- In the buffer handlers, add 'goto out;' instead of just returning the
> 	  error because iio_trigger_notify_done() wouldn't be called in case of
> 	  error.
> 
> [1]: https://lore.kernel.org/linux-iio/043f2be49df3c11152aaf32fc5467ed43fd59faa.camel@gmail.com/
> [2]: https://lore.kernel.org/linux-iio/20240505200818.1e70c664@jic23-huawei/
> [3]: https://lore.kernel.org/linux-iio/20240505202106.1c780044@jic23-huawei/
> 
> Vasileios Amoiridis (9):
>   iio: pressure: bmp280: Remove dead error checks
>   iio: pressure: bmp280: Remove, add and update error messages
>   iio: pressure: bmp280: Make error checks consistent
>   iio: pressure: bmp280: Use unsigned data types for raw sensor data
>   iio: pressure: bmp280: Refactorize reading functions
>   iio: pressure: bmp280: Introduce new cleanup routines
>   iio: pressure: bmp280: Generalize read_{temp,press,humid}() functions
>   iio: pressure: bmp280: Add SCALE, RAW values in channels and
>     refactorize them
>   iio: pressure: bmp280: Add triggered buffer support
> 
>  drivers/iio/pressure/Kconfig       |    2 +
>  drivers/iio/pressure/bmp280-core.c | 1130 ++++++++++++++++++++--------
>  drivers/iio/pressure/bmp280-spi.c  |    8 +-
>  drivers/iio/pressure/bmp280.h      |   34 +-
>  4 files changed, 844 insertions(+), 330 deletions(-)
> 
> 
> base-commit: dccb07f2914cdab2ac3a5b6c98406f765acab803
> -- 
> 2.25.1
> 

I messed up with the versioning before, please don't comment here if 
possible. The correct thread is the following:

https://lore.kernel.org/linux-iio/20240508165207.145554-1-vassilisamir@gmail.com/T/#t

Sorry for the mess up.

Cheers,
Vasilis

      parent reply	other threads:[~2024-05-08 16:54 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-08 16:34 [PATCH 0/9] iio: pressure: bmp280: Add triggered buffer support and Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 1/9] iio: pressure: bmp280: Remove dead error checks Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 2/9] iio: pressure: bmp280: Remove, add and update error messages Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 3/9] iio: pressure: bmp280: Make error checks consistent Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 4/9] iio: pressure: bmp280: Use unsigned data types for raw sensor data Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 5/9] iio: pressure: bmp280: Refactorize reading functions Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 6/9] iio: pressure: bmp280: Introduce new cleanup routines Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 7/9] iio: pressure: bmp280: Generalize read_{temp,press,humid}() functions Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 8/9] iio: pressure: bmp280: Add SCALE, RAW values in channels and refactorize them Vasileios Amoiridis
2024-05-08 16:34 ` [PATCH 9/9] iio: pressure: bmp280: Add triggered buffer support Vasileios Amoiridis
2024-05-08 16:54 ` Vasileios Amoiridis [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=20240508165444.GA144826@vamoiridPC \
    --to=vassilisamir@gmail.com \
    --cc=579lpy@gmail.com \
    --cc=ak@it-klinger.de \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=ang.iglesiasg@gmail.com \
    --cc=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linus.walleij@linaro.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mazziesaccount@gmail.com \
    --cc=petre.rodan@subdimension.ro \
    --cc=phil@raspberrypi.com \
    --cc=semen.protsenko@linaro.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 read-only IMAP folder(s) and NNTP newsgroup(s).