From: Rob Herring <robh@kernel.org>
To: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Cc: linuxarm@huawei.com, mauro.chehab@huawei.com,
Bjorn Helgaas <bhelgaas@google.com>, JC Kuo <jckuo@nvidia.com>,
Jonathan Hunter <jonathanh@nvidia.com>,
Sameer Pujar <spujar@nvidia.com>,
Sowjanya Komatineni <skomatineni@nvidia.com>,
Thierry Reding <thierry.reding@gmail.com>,
Vidya Sagar <vidyas@nvidia.com>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-pci@vger.kernel.org, linux-tegra@vger.kernel.org
Subject: Re: [PATCH v5 5/5] dt-bindings: arm64: tegra: fix pcie-ep DT nodes
Date: Mon, 19 Jul 2021 15:19:58 -0600 [thread overview]
Message-ID: <20210719211958.GA2571127@robh.at.kernel.org> (raw)
In-Reply-To: <15cf5067c0567614d5b186d006ebd88395d56b63.1626608375.git.mchehab+huawei@kernel.org>
On Sun, Jul 18, 2021 at 01:40:52PM +0200, Mauro Carvalho Chehab wrote:
> As defined by Documentation/devicetree/bindings/pci/pci-ep.yaml,
> PCIe endpoints match this pattern:
>
> properties:
> $nodename:
> pattern: "^pcie-ep@"
>
> Change the existing ones in order to avoid those warnings:
>
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0001.dt.yaml: pcie_ep@14160000: $nodename:0: 'pcie_ep@14160000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0001.dt.yaml: pcie_ep@14180000: $nodename:0: 'pcie_ep@14180000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0001.dt.yaml: pcie_ep@141a0000: $nodename:0: 'pcie_ep@141a0000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0000.dt.yaml: pcie_ep@14160000: $nodename:0: 'pcie_ep@14160000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0000.dt.yaml: pcie_ep@14180000: $nodename:0: 'pcie_ep@14180000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0000.dt.yaml: pcie_ep@141a0000: $nodename:0: 'pcie_ep@141a0000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dt.yaml: pcie_ep@14160000: $nodename:0: 'pcie_ep@14160000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dt.yaml: pcie_ep@14180000: $nodename:0: 'pcie_ep@14180000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
> arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dt.yaml: pcie_ep@141a0000: $nodename:0: 'pcie_ep@141a0000' does not match '^pcie-ep@'
> From schema: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> ---
> .../devicetree/bindings/pci/nvidia,tegra194-pcie.txt | 2 +-
> arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dts | 2 +-
> arch/arm64/boot/dts/nvidia/tegra194-p3509-0000.dtsi | 2 +-
> arch/arm64/boot/dts/nvidia/tegra194.dtsi | 6 +++---
> 4 files changed, 6 insertions(+), 6 deletions(-)
The Tegra maintainers should apply this one.
Acked-by: Rob Herring <robh@kernel.org>
next prev parent reply other threads:[~2021-07-19 21:56 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-18 11:40 [PATCH v5 0/5] convert designware-pcie.txt to yaml Mauro Carvalho Chehab
2021-07-18 11:40 ` [PATCH v5 1/5] dt-bindings: PCI: add snps,dw-pcie.yaml Mauro Carvalho Chehab
2021-07-19 22:02 ` Rob Herring
2021-07-18 11:40 ` [PATCH v5 2/5] dt-bindings: PCI: add snps,dw-pcie-ep.yaml Mauro Carvalho Chehab
2021-07-19 22:02 ` Rob Herring
2021-07-18 11:40 ` [PATCH v5 3/5] dt-bindings: PCI: update references to Designware schema Mauro Carvalho Chehab
2021-07-19 22:02 ` Rob Herring
2021-07-18 11:40 ` [PATCH v5 4/5] dt-bindings: PCI: remove designware-pcie.txt Mauro Carvalho Chehab
2021-07-19 22:02 ` Rob Herring
2021-07-18 11:40 ` [PATCH v5 5/5] dt-bindings: arm64: tegra: fix pcie-ep DT nodes Mauro Carvalho Chehab
2021-07-19 21:19 ` Rob Herring [this message]
2021-10-07 19:23 ` Thierry Reding
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=20210719211958.GA2571127@robh.at.kernel.org \
--to=robh@kernel.org \
--cc=bhelgaas@google.com \
--cc=devicetree@vger.kernel.org \
--cc=jckuo@nvidia.com \
--cc=jonathanh@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=mauro.chehab@huawei.com \
--cc=mchehab+huawei@kernel.org \
--cc=skomatineni@nvidia.com \
--cc=spujar@nvidia.com \
--cc=thierry.reding@gmail.com \
--cc=vidyas@nvidia.com \
/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).