* [PATCH -next] Documentation: devres: add missing IIO helpers
@ 2022-09-27 7:40 Yang Yingliang
2022-09-27 8:09 ` Yang Yingliang
0 siblings, 1 reply; 3+ messages in thread
From: Yang Yingliang @ 2022-09-27 7:40 UTC (permalink / raw)
To: linux-doc, linux-iio; +Cc: jic23, lars, Jonathan.Cameron, yangyingliang
Add missing device-managed helpers of iio to devres.rst.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
Documentation/driver-api/driver-model/devres.rst | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
index 2895f9ea00c4..5154844bc222 100644
--- a/Documentation/driver-api/driver-model/devres.rst
+++ b/Documentation/driver-api/driver-model/devres.rst
@@ -286,12 +286,16 @@ IIO
devm_iio_device_register()
devm_iio_dmaengine_buffer_setup()
devm_iio_kfifo_buffer_setup()
+ devm_iio_kfifo_buffer_setup_ext()
devm_iio_map_array_register()
devm_iio_triggered_buffer_setup()
+ devm_iio_triggered_buffer_setup_ext()
devm_iio_trigger_alloc()
devm_iio_trigger_register()
devm_iio_channel_get()
devm_iio_channel_get_all()
+ devm_iio_hw_consumer_alloc()
+ devm_fwnode_iio_channel_get_by_name()
INPUT
devm_input_allocate_device()
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH -next] Documentation: devres: add missing IIO helpers
2022-09-27 7:40 [PATCH -next] Documentation: devres: add missing IIO helpers Yang Yingliang
@ 2022-09-27 8:09 ` Yang Yingliang
2022-10-02 12:49 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Yang Yingliang @ 2022-09-27 8:09 UTC (permalink / raw)
To: linux-doc, linux-iio; +Cc: jic23, lars, Jonathan.Cameron, corbet, yangyingliang
Add Cc: Jonathan Corbet <corbet@lwn.net>
On 2022/9/27 15:40, Yang Yingliang wrote:
> Add missing device-managed helpers of iio to devres.rst.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
> Documentation/driver-api/driver-model/devres.rst | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
> index 2895f9ea00c4..5154844bc222 100644
> --- a/Documentation/driver-api/driver-model/devres.rst
> +++ b/Documentation/driver-api/driver-model/devres.rst
> @@ -286,12 +286,16 @@ IIO
> devm_iio_device_register()
> devm_iio_dmaengine_buffer_setup()
> devm_iio_kfifo_buffer_setup()
> + devm_iio_kfifo_buffer_setup_ext()
> devm_iio_map_array_register()
> devm_iio_triggered_buffer_setup()
> + devm_iio_triggered_buffer_setup_ext()
> devm_iio_trigger_alloc()
> devm_iio_trigger_register()
> devm_iio_channel_get()
> devm_iio_channel_get_all()
> + devm_iio_hw_consumer_alloc()
> + devm_fwnode_iio_channel_get_by_name()
>
> INPUT
> devm_input_allocate_device()
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next] Documentation: devres: add missing IIO helpers
2022-09-27 8:09 ` Yang Yingliang
@ 2022-10-02 12:49 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2022-10-02 12:49 UTC (permalink / raw)
To: Yang Yingliang; +Cc: linux-doc, linux-iio, lars, Jonathan.Cameron, corbet
On Tue, 27 Sep 2022 16:09:02 +0800
Yang Yingliang <yangyingliang@huawei.com> wrote:
> Add Cc: Jonathan Corbet <corbet@lwn.net>
>
> On 2022/9/27 15:40, Yang Yingliang wrote:
> > Add missing device-managed helpers of iio to devres.rst.
> >
> > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
I'm assuming this will go via the docs tree.
Thanks for tidying this up.
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > ---
> > Documentation/driver-api/driver-model/devres.rst | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
> > index 2895f9ea00c4..5154844bc222 100644
> > --- a/Documentation/driver-api/driver-model/devres.rst
> > +++ b/Documentation/driver-api/driver-model/devres.rst
> > @@ -286,12 +286,16 @@ IIO
> > devm_iio_device_register()
> > devm_iio_dmaengine_buffer_setup()
> > devm_iio_kfifo_buffer_setup()
> > + devm_iio_kfifo_buffer_setup_ext()
> > devm_iio_map_array_register()
> > devm_iio_triggered_buffer_setup()
> > + devm_iio_triggered_buffer_setup_ext()
> > devm_iio_trigger_alloc()
> > devm_iio_trigger_register()
> > devm_iio_channel_get()
> > devm_iio_channel_get_all()
> > + devm_iio_hw_consumer_alloc()
> > + devm_fwnode_iio_channel_get_by_name()
> >
> > INPUT
> > devm_input_allocate_device()
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-10-02 12:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-27 7:40 [PATCH -next] Documentation: devres: add missing IIO helpers Yang Yingliang
2022-09-27 8:09 ` Yang Yingliang
2022-10-02 12:49 ` Jonathan Cameron
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).