arm: a37xx: pci: Fix DT compatible string to Linux' DT compatible
authorPali Rohár <pali@kernel.org>
Wed, 26 May 2021 15:59:36 +0000 (17:59 +0200)
committerStefan Roese <sr@denx.de>
Fri, 4 Jun 2021 09:32:41 +0000 (11:32 +0200)
Change DT compatible string for A3700 PCIe from 'marvell,armada-37xx-pcie'
to 'marvell,armada-3700-pcie' to make U-Boot A3700 PCIe DT node compatible
with Linux' DT node.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
arch/arm/dts/armada-37xx.dtsi
drivers/pci/pci-aardvark.c

index a1052ad..b7d325b 100644 (file)
                };
 
                pcie0: pcie@d0070000 {
-                       compatible = "marvell,armada-37xx-pcie";
+                       compatible = "marvell,armada-3700-pcie";
                        reg = <0 0xd0070000 0 0x20000>;
                        #address-cells = <3>;
                        #size-cells = <2>;
index ee81b2e..ae1a205 100644 (file)
@@ -717,7 +717,7 @@ static const struct dm_pci_ops pcie_advk_ops = {
 };
 
 static const struct udevice_id pcie_advk_ids[] = {
-       { .compatible = "marvell,armada-37xx-pcie" },
+       { .compatible = "marvell,armada-3700-pcie" },
        { }
 };