mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
37ff916af7
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 3392ef368d9b04622fe758b1079b512664b6110a Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
|
Date: Fri, 7 Jul 2023 13:40:03 +0200
|
|
Subject: [PATCH] ARM: dts: BCM53573: Add cells sizes to PCIe node
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This fixes:
|
|
arch/arm/boot/dts/broadcom/bcm47189-luxul-xap-1440.dtb: pcie@2000: '#address-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/broadcom/bcm47189-luxul-xap-1440.dtb: pcie@2000: '#size-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
|
|
Two properties that need to be added later are "device_type" and
|
|
"ranges". Adding "device_type" on its own causes a new warning and the
|
|
value of "ranges" needs to be determined yet.
|
|
|
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
|
Link: https://lore.kernel.org/r/20230707114004.2740-3-zajec5@gmail.com
|
|
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
|
|
---
|
|
arch/arm/boot/dts/broadcom/bcm53573.dtsi | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/arch/arm/boot/dts/bcm53573.dtsi
|
|
+++ b/arch/arm/boot/dts/bcm53573.dtsi
|
|
@@ -127,6 +127,9 @@
|
|
|
|
pcie0: pcie@2000 {
|
|
reg = <0x00002000 0x1000>;
|
|
+
|
|
+ #address-cells = <3>;
|
|
+ #size-cells = <2>;
|
|
};
|
|
|
|
usb2: usb2@4000 {
|