From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: linux-clk@vger.kernel.org, mturquette@baylibre.com,
sboyd@kernel.org, linux-arm-kernel@lists.infradead.org,
robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
conor+dt@kernel.org, nbd@nbd.name, john@phrozen.org,
devicetree@vger.kernel.org, dd@embedd.com,
catalin.marinas@arm.com, will@kernel.org, upstream@airoha.com,
lorenzo.bianconi83@gmail.com,
angelogioacchino.delregno@collabora.com
Subject: Re: [PATCH 1/4] dt-bindings: clock: airoha: add EN7581 binding
Date: Thu, 4 Apr 2024 10:43:14 +0200 [thread overview]
Message-ID: <Zg5oIhcW4pFQNTwm@lore-desk> (raw)
In-Reply-To: <65e7617a-9e7b-4dea-a98c-31502222543a@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 1769 bytes --]
> On 03/04/2024 18:20, Lorenzo Bianconi wrote:
> > Introduce Airoha EN7581 entry in Airoha EN7523 clock binding
> >
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > ---
> > .../bindings/clock/airoha,en7523-scu.yaml | 26 +++++++++++++++++--
> > 1 file changed, 24 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > index 79b0752faa91..cf893d4c74cd 100644
> > --- a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > +++ b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > @@ -29,10 +29,13 @@ description: |
> > properties:
> > compatible:
> > items:
> > - - const: airoha,en7523-scu
> > + - enum:
> > + - airoha,en7523-scu
> > + - airoha,en7581-scu
> >
> > reg:
> > - maxItems: 2
> > + minItems: 2
> > + maxItems: 3
> >
> > "#clock-cells":
> > description:
> > @@ -45,6 +48,25 @@ required:
> > - reg
> > - '#clock-cells'
> >
> > +allOf:
> > + - if:
> > + properties:
> > + compatible:
> > + const: airoha,en7523-scu
> > + then:
> > + properties:
> > + reg:
> > + maxItems: 2
> > +
> > + - if:
> > + properties:
> > + compatible:
> > + const: airoha,en7581-scu
> > + then:
> > + properties:
> > + reg:
> > + maxItems: 3
>
> Original code had here issue - lack of description of the items. You are
> now growing it. Please instead list the items (items: - description: foo
> bar .....).
ack, I will fix it.
Regards,
Lorenzo
>
> Best regards,
> Krzysztof
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: linux-clk@vger.kernel.org, mturquette@baylibre.com,
sboyd@kernel.org, linux-arm-kernel@lists.infradead.org,
robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
conor+dt@kernel.org, nbd@nbd.name, john@phrozen.org,
devicetree@vger.kernel.org, dd@embedd.com,
catalin.marinas@arm.com, will@kernel.org, upstream@airoha.com,
lorenzo.bianconi83@gmail.com,
angelogioacchino.delregno@collabora.com
Subject: Re: [PATCH 1/4] dt-bindings: clock: airoha: add EN7581 binding
Date: Thu, 4 Apr 2024 10:43:14 +0200 [thread overview]
Message-ID: <Zg5oIhcW4pFQNTwm@lore-desk> (raw)
In-Reply-To: <65e7617a-9e7b-4dea-a98c-31502222543a@linaro.org>
[-- Attachment #1.1: Type: text/plain, Size: 1769 bytes --]
> On 03/04/2024 18:20, Lorenzo Bianconi wrote:
> > Introduce Airoha EN7581 entry in Airoha EN7523 clock binding
> >
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > ---
> > .../bindings/clock/airoha,en7523-scu.yaml | 26 +++++++++++++++++--
> > 1 file changed, 24 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > index 79b0752faa91..cf893d4c74cd 100644
> > --- a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > +++ b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> > @@ -29,10 +29,13 @@ description: |
> > properties:
> > compatible:
> > items:
> > - - const: airoha,en7523-scu
> > + - enum:
> > + - airoha,en7523-scu
> > + - airoha,en7581-scu
> >
> > reg:
> > - maxItems: 2
> > + minItems: 2
> > + maxItems: 3
> >
> > "#clock-cells":
> > description:
> > @@ -45,6 +48,25 @@ required:
> > - reg
> > - '#clock-cells'
> >
> > +allOf:
> > + - if:
> > + properties:
> > + compatible:
> > + const: airoha,en7523-scu
> > + then:
> > + properties:
> > + reg:
> > + maxItems: 2
> > +
> > + - if:
> > + properties:
> > + compatible:
> > + const: airoha,en7581-scu
> > + then:
> > + properties:
> > + reg:
> > + maxItems: 3
>
> Original code had here issue - lack of description of the items. You are
> now growing it. Please instead list the items (items: - description: foo
> bar .....).
ack, I will fix it.
Regards,
Lorenzo
>
> Best regards,
> Krzysztof
>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-04-04 8:43 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-03 16:20 [PATCH 0/4] Introduce clock support for Airoha EN7581 SoC Lorenzo Bianconi
2024-04-03 16:20 ` Lorenzo Bianconi
2024-04-03 16:20 ` [PATCH 1/4] dt-bindings: clock: airoha: add EN7581 binding Lorenzo Bianconi
2024-04-03 16:20 ` Lorenzo Bianconi
2024-04-04 6:34 ` Krzysztof Kozlowski
2024-04-04 6:34 ` Krzysztof Kozlowski
2024-04-04 8:43 ` Lorenzo Bianconi [this message]
2024-04-04 8:43 ` Lorenzo Bianconi
2024-04-03 16:20 ` [PATCH 2/4] arm64: dts: airoha: Add EN7581 clock node Lorenzo Bianconi
2024-04-03 16:20 ` Lorenzo Bianconi
2024-04-04 8:47 ` AngeloGioacchino Del Regno
2024-04-04 8:47 ` AngeloGioacchino Del Regno
2024-04-04 8:57 ` Lorenzo Bianconi
2024-04-04 8:57 ` Lorenzo Bianconi
2024-04-04 9:12 ` AngeloGioacchino Del Regno
2024-04-04 9:12 ` AngeloGioacchino Del Regno
2024-04-04 9:20 ` Lorenzo Bianconi
2024-04-04 9:20 ` Lorenzo Bianconi
2024-04-03 16:20 ` [PATCH 3/4] clk: en7523: make pcie clk_ops accessible through of_device_id struct Lorenzo Bianconi
2024-04-03 16:20 ` Lorenzo Bianconi
2024-04-03 16:20 ` [PATCH 4/4] clk: en7523: add EN7581 support Lorenzo Bianconi
2024-04-03 16:20 ` Lorenzo Bianconi
2024-04-04 6:36 ` Krzysztof Kozlowski
2024-04-04 6:36 ` Krzysztof Kozlowski
2024-04-04 7:55 ` Lorenzo Bianconi
2024-04-04 7:55 ` Lorenzo Bianconi
2024-04-04 9:09 ` AngeloGioacchino Del Regno
2024-04-04 9:09 ` AngeloGioacchino Del Regno
2024-04-05 8:17 ` Lorenzo Bianconi
2024-04-05 8:17 ` Lorenzo Bianconi
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=Zg5oIhcW4pFQNTwm@lore-desk \
--to=lorenzo@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=dd@embedd.com \
--cc=devicetree@vger.kernel.org \
--cc=john@phrozen.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=lorenzo.bianconi83@gmail.com \
--cc=mturquette@baylibre.com \
--cc=nbd@nbd.name \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=upstream@airoha.com \
--cc=will@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.