2021-09-19 06:45:34

by Tommaso Merciai

[permalink] [raw]
Subject: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0, pci warning.

Fix the following warning:

./scripts/dtc/include-prefixes/arm/bcm2711-rpi-4-b.dts:220.10-231.4:
Warning (pci_device_reg):
/scb/pcie@7d500000/pci@1,0: PCI unit address format error, expected "0,0"

Signed-off-by: Tommaso Merciai <[email protected]>
---
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
index f24bdd0870a5..8a77f9e942be 100644
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
@@ -217,7 +217,7 @@ phy1: ethernet-phy@1 {
};

&pcie0 {
- pci@1,0 {
+ pci@0,0 {
#address-cells = <3>;
#size-cells = <2>;
ranges;
--
2.25.1


2021-09-20 09:54:38

by nicolas saenz julienne

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0, pci warning.

Hi Tommaso,

On Sat, 2021-09-18 at 16:35 +0200, Tommaso Merciai wrote:
> Fix the following warning:
>
> ./scripts/dtc/include-prefixes/arm/bcm2711-rpi-4-b.dts:220.10-231.4:
> Warning (pci_device_reg):
> /scb/pcie@7d500000/pci@1,0: PCI unit address format error, expected "0,0"
>
> Signed-off-by: Tommaso Merciai <[email protected]>
> ---

This issue was already addressed here:
https://lore.kernel.org/all/[email protected]/

It's available in linux-next and will eventually show up upstream.

Regards,
Nicolas

2021-09-26 22:36:03

by Tommaso Merciai

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0, pci warning.

On Mon, Sep 20, 2021 at 10:21:46AM +0200, nicolas saenz julienne wrote:
> Hi Tommaso,
>
> On Sat, 2021-09-18 at 16:35 +0200, Tommaso Merciai wrote:
> > Fix the following warning:
> >
> > ./scripts/dtc/include-prefixes/arm/bcm2711-rpi-4-b.dts:220.10-231.4:
> > Warning (pci_device_reg):
> > /scb/pcie@7d500000/pci@1,0: PCI unit address format error, expected "0,0"
> >
> > Signed-off-by: Tommaso Merciai <[email protected]>
> > ---
>
> This issue was already addressed here:
> https://lore.kernel.org/all/[email protected]/
>
> It's available in linux-next and will eventually show up upstream.
>
> Regards,
> Nicolas
>
Hi Nicolas,
Thanks for your feedback.

Tommaso