diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-10-05 11:12:43 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-10-05 11:22:40 +0300 |
commit | 114b9da7ebd964697a7ca5f85f68f61503e91f3a (patch) | |
tree | 7a80efa3714245df0bd44f026753d3c1ed8c9ddb | |
parent | 40a5af128af54dc0fbd06e11ef2d8a693e25d33f (diff) | |
download | linux-114b9da7ebd964697a7ca5f85f68f61503e91f3a.tar.xz |
Revert "ARM: dts: BCM5301X: Add basic PCI controller properties"
Adding the #address-cells/#size-cells properties without also
adding the other required properties for PCI nodes causes new
build warnings from dtc that now show up everywhere, rather than
just while verifying the yaml bindings:
arch/arm/boot/dts/bcm5301x.dtsi:240.21-246.5: Warning (pci_bridge): /axi@18000000/pcie@12000: missing ranges for PCI bridge (or not a bridge)
arch/arm/boot/dts/bcm5301x.dtsi:248.21-254.5: Warning (pci_bridge): /axi@18000000/pcie@13000: missing ranges for PCI bridge (or not a bridge)
arch/arm/boot/dts/bcm5301x.dtsi:256.21-262.5: Warning (pci_bridge): /axi@18000000/pcie@14000: missing ranges for PCI bridge (or not a bridge)
arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dtb: Warning (unit_address_format): Failed prerequisite 'pci_bridge'
Revert it for now.
Fixes: 61dc1e3850a6 ("ARM: dts: BCM5301X: Add basic PCI controller properties")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/boot/dts/bcm5301x.dtsi | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/boot/dts/bcm5301x.dtsi b/arch/arm/boot/dts/bcm5301x.dtsi index a06184b8e0d9..5fc1b847f4aa 100644 --- a/arch/arm/boot/dts/bcm5301x.dtsi +++ b/arch/arm/boot/dts/bcm5301x.dtsi @@ -239,26 +239,14 @@ pcie0: pcie@12000 { reg = <0x00012000 0x1000>; - device_type = "pci"; - - #address-cells = <3>; - #size-cells = <2>; }; pcie1: pcie@13000 { reg = <0x00013000 0x1000>; - device_type = "pci"; - - #address-cells = <3>; - #size-cells = <2>; }; pcie2: pcie@14000 { reg = <0x00014000 0x1000>; - device_type = "pci"; - - #address-cells = <3>; - #size-cells = <2>; }; usb2: usb2@21000 { |