devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Nuno Sa via B4 Relay <devnull+nuno.sa.analog.com@kernel.org>
Cc: <nuno.sa@analog.com>,
	linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	Lars-Peter Clausen <lars@metafoo.de>,
	Michael Hennerich <Michael.Hennerich@analog.com>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Frank Rowand <frowand.list@gmail.com>,
	Olivier Moysan <olivier.moysan@foss.st.com>,
	andy.shevchenko@gmail.com, Rob Herring <robh@kernel.org>,
	Stephen Rothwell <sfr@canb.auug.org.au>
Subject: Re: [PATCH v11 3/7] of: property: add device link support for io-backends
Date: Fri, 16 Feb 2024 14:34:32 +0000	[thread overview]
Message-ID: <20240216143432.745ae6e4@jic23-huawei> (raw)
In-Reply-To: <20240210-iio-backend-v11-3-f5242a5fb42a@analog.com>

On Sat, 10 Feb 2024 21:57:15 +0100
Nuno Sa via B4 Relay <devnull+nuno.sa.analog.com@kernel.org> wrote:

> From: Olivier Moysan <olivier.moysan@foss.st.com>
> 
> Add support for creating device links out of more DT properties.
> 
> Signed-off-by: Olivier Moysan <olivier.moysan@foss.st.com>
> Acked-by: Rob Herring <robh@kernel.org>
> Signed-off-by: Nuno Sa <nuno.sa@analog.com>
> ---
+CC Stephen Rothwell for linux-next conflict.

I'm going to pick this up against my current tree where the fix
for the line above the DEFINE isn't present. That will cause
a minor merge conflict due to the change in context.

Sorry for the irritation Stephen!

I'm keen to get this into linux next now rather than waiting for
a second pull to Greg late this cycle.  I'll aim to do first pull
with this in next week.

Will be briefly pushing out as testing though so 0-day can have
a look first and then out for linux-next to pick up after I see
those test reports (so this will probably waste a tiny bit
of Stephen's time mid week).

Thanks,

Jonathan


>  drivers/of/property.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/of/property.c b/drivers/of/property.c
> index caa3e54aae13..0e91a5f4d0cb 100644
> --- a/drivers/of/property.c
> +++ b/drivers/of/property.c
> @@ -1245,6 +1245,7 @@ DEFINE_SIMPLE_PROP(interconnects, "interconnects", "#interconnect-cells")
>  DEFINE_SIMPLE_PROP(iommus, "iommus", "#iommu-cells")
>  DEFINE_SIMPLE_PROP(mboxes, "mboxes", "#mbox-cells")
>  DEFINE_SIMPLE_PROP(io_channels, "io-channels", "#io-channel-cells")
> +DEFINE_SIMPLE_PROP(io_backends, "io-backends", "#io-backend-cells")
>  DEFINE_SIMPLE_PROP(interrupt_parent, "interrupt-parent", NULL)
>  DEFINE_SIMPLE_PROP(dmas, "dmas", "#dma-cells")
>  DEFINE_SIMPLE_PROP(power_domains, "power-domains", "#power-domain-cells")
> @@ -1335,6 +1336,7 @@ static const struct supplier_bindings of_supplier_bindings[] = {
>  	{ .parse_prop = parse_iommu_maps, .optional = true, },
>  	{ .parse_prop = parse_mboxes, },
>  	{ .parse_prop = parse_io_channels, },
> +	{ .parse_prop = parse_io_backends, },
>  	{ .parse_prop = parse_interrupt_parent, },
>  	{ .parse_prop = parse_dmas, .optional = true, },
>  	{ .parse_prop = parse_power_domains, },
> 


  reply	other threads:[~2024-02-16 14:34 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-10 20:57 [PATCH v11 0/7] iio: add new backend framework Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 1/7] dt-bindings: adc: ad9467: add new io-backend property Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 2/7] dt-bindings: adc: axi-adc: update bindings for backend framework Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 3/7] of: property: add device link support for io-backends Nuno Sa via B4 Relay
2024-02-16 14:34   ` Jonathan Cameron [this message]
2024-02-10 20:57 ` [PATCH v11 4/7] iio: buffer-dmaengine: export buffer alloc and free functions Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 5/7] iio: add the IIO backend framework Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 6/7] iio: adc: ad9467: convert to " Nuno Sa via B4 Relay
2024-02-10 20:57 ` [PATCH v11 7/7] iio: adc: adi-axi-adc: move " Nuno Sa via B4 Relay
2024-02-11 16:52   ` Andy Shevchenko
2024-02-14 12:35     ` Nuno Sá
2024-02-11 16:55 ` [PATCH v11 0/7] iio: add new " Andy Shevchenko
2024-02-14 12:38   ` Nuno Sá

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=20240216143432.745ae6e4@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=Michael.Hennerich@analog.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=devnull+nuno.sa.analog.com@kernel.org \
    --cc=frowand.list@gmail.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=nuno.sa@analog.com \
    --cc=olivier.moysan@foss.st.com \
    --cc=robh+dt@kernel.org \
    --cc=robh@kernel.org \
    --cc=sfr@canb.auug.org.au \
    /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).