From: jic23@kernel.org (Jonathan Cameron)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 03/13] IIO: hw_consumer: add devm_iio_hw_consumer_alloc
Date: Sat, 2 Dec 2017 14:52:04 +0000 [thread overview]
Message-ID: <20171202145204.25e9093d@archlinux> (raw)
In-Reply-To: <1512150020-20335-4-git-send-email-arnaud.pouliquen@st.com>
On Fri, 1 Dec 2017 18:40:10 +0100
Arnaud Pouliquen <arnaud.pouliquen@st.com> wrote:
> Add devm_iio_hw_consumer_alloc function that calls iio_hw_consumer_free
> when the device is unbound from the bus.
>
> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> ---
> drivers/iio/buffer/industrialio-hw-consumer.c | 66 +++++++++++++++++++++++++++
> include/linux/iio/hw-consumer.h | 2 +
> 2 files changed, 68 insertions(+)
>
> diff --git a/drivers/iio/buffer/industrialio-hw-consumer.c b/drivers/iio/buffer/industrialio-hw-consumer.c
> index 0253be1..e980a79 100644
> --- a/drivers/iio/buffer/industrialio-hw-consumer.c
> +++ b/drivers/iio/buffer/industrialio-hw-consumer.c
> @@ -138,6 +138,72 @@ void iio_hw_consumer_free(struct iio_hw_consumer *hwc)
> }
> EXPORT_SYMBOL_GPL(iio_hw_consumer_free);
>
> +static void devm_iio_hw_consumer_release(struct device *dev, void *res)
> +{
> + iio_hw_consumer_free(*(struct iio_hw_consumer **)res);
> +}
> +
> +static int devm_iio_hw_consumer_match(struct device *dev, void *res, void *data)
> +{
> + struct iio_hw_consumer **r = res;
> +
> + if (!r || !*r) {
> + WARN_ON(!r || !*r);
> + return 0;
> + }
> + return *r == data;
> +}
> +
> +/**
> + * devm_iio_hw_consumer_alloc - Resource-managed iio_hw_consumer_alloc()
> + * @dev: Pointer to consumer device.
> + *
> + * Managed iio_hw_consumer_alloc. iio_hw_consumer allocated with this function
> + * is automatically freed on driver detach.
> + *
> + * If an iio_hw_consumer allocated with this function needs to be freed
> + * separately, devm_iio_hw_consumer_free() must be used.
> + *
> + * returns pointer to allocated iio_hw_consumer on success, NULL on failure.
> + */
> +struct iio_hw_consumer *devm_iio_hw_consumer_alloc(struct device *dev)
> +{
> + struct iio_hw_consumer **ptr, *iio_hwc;
> +
> + ptr = devres_alloc(devm_iio_hw_consumer_release, sizeof(*ptr),
> + GFP_KERNEL);
> + if (!ptr)
> + return NULL;
> +
> + iio_hwc = iio_hw_consumer_alloc(dev);
> + if (IS_ERR(iio_hwc)) {
> + devres_free(ptr);
> + } else {
> + *ptr = iio_hwc;
> + devres_add(dev, ptr);
> + }
> +
> + return iio_hwc;
> +}
> +EXPORT_SYMBOL_GPL(devm_iio_hw_consumer_alloc);
> +
> +/**
> + * devm_iio_hw_consumer_free - Resource-managed iio_hw_consumer_free()
> + * @dev: Pointer to consumer device.
> + * @hwc: iio_hw_consumer to free.
> + *
> + * Free iio_hw_consumer allocated with devm_iio_hw_consumer_alloc().
> + */
> +void devm_iio_hw_consumer_free(struct device *dev, struct iio_hw_consumer *hwc)
> +{
> + int rc;
> +
> + rc = devres_release(dev, devm_iio_hw_consumer_release,
> + devm_iio_hw_consumer_match, hwc);
> + WARN_ON(rc);
> +}
> +EXPORT_SYMBOL_GPL(devm_iio_hw_consumer_free);
> +
> /**
> * iio_hw_consumer_enable() - Enable IIO hardware consumer
> * @hwc: iio_hw_consumer to enable.
> diff --git a/include/linux/iio/hw-consumer.h b/include/linux/iio/hw-consumer.h
> index f16791b..90ecfce 100644
> --- a/include/linux/iio/hw-consumer.h
> +++ b/include/linux/iio/hw-consumer.h
> @@ -14,6 +14,8 @@ struct iio_hw_consumer;
>
> struct iio_hw_consumer *iio_hw_consumer_alloc(struct device *dev);
> void iio_hw_consumer_free(struct iio_hw_consumer *hwc);
> +struct iio_hw_consumer *devm_iio_hw_consumer_alloc(struct device *dev);
> +void devm_iio_hw_consumer_free(struct device *dev, struct iio_hw_consumer *hwc);
> int iio_hw_consumer_enable(struct iio_hw_consumer *hwc);
> void iio_hw_consumer_disable(struct iio_hw_consumer *hwc);
>
next prev parent reply other threads:[~2017-12-02 14:52 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-01 17:40 [PATCH v6 00/13] Add STM32 DFSDM support Arnaud Pouliquen
2017-12-01 17:40 ` [PATCH v6 01/13] iio: Add hardware consumer buffer support Arnaud Pouliquen
2017-12-02 14:50 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 02/13] docs: driver-api: add iio hw consumer section Arnaud Pouliquen
2017-12-02 14:51 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 03/13] IIO: hw_consumer: add devm_iio_hw_consumer_alloc Arnaud Pouliquen
2017-12-02 14:52 ` Jonathan Cameron [this message]
2017-12-01 17:40 ` [PATCH v6 04/13] IIO: inkern: API for manipulating channel attributes Arnaud Pouliquen
2017-12-02 14:46 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 05/13] IIO: Add DT bindings for sigma delta adc modulator Arnaud Pouliquen
2017-12-02 14:52 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 06/13] IIO: ADC: add sigma delta modulator support Arnaud Pouliquen
2017-12-02 14:54 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 07/13] IIO: add DT bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-12-02 14:55 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 08/13] IIO: ADC: add stm32 DFSDM core support Arnaud Pouliquen
2017-12-01 17:40 ` [PATCH v6 09/13] IIO: ADC: add STM32 DFSDM sigma delta ADC support Arnaud Pouliquen
2017-12-02 14:58 ` Jonathan Cameron
2017-12-01 17:40 ` [PATCH v6 10/13] IIO: ADC: add stm32 DFSDM support for PDM microphone Arnaud Pouliquen
2017-12-01 17:40 ` [PATCH v6 11/13] IIO: consumer: allow to set buffer sizes Arnaud Pouliquen
2017-12-01 17:40 ` [PATCH v6 12/13] ASoC: add bindings for stm32 DFSDM filter Arnaud Pouliquen
2017-12-04 21:51 ` Rob Herring
2017-12-01 17:40 ` [PATCH v6 13/13] ASoC: stm32: add DFSDM DAI support Arnaud Pouliquen
2017-12-02 15:09 ` Jonathan Cameron
2017-12-04 8:58 ` Arnaud Pouliquen
2017-12-04 16:58 ` Mark Brown
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=20171202145204.25e9093d@archlinux \
--to=jic23@kernel.org \
--cc=linux-arm-kernel@lists.infradead.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).