]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
PCI: rcar: Use gen2 fallback compatibility last
authorSimon Horman <horms+renesas@verge.net.au>
Tue, 6 Dec 2016 15:51:30 +0000 (16:51 +0100)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 7 Dec 2016 22:56:38 +0000 (16:56 -0600)
Improve readability by listing fallback compatibility strings after the
more-specific compatibility strings they provide a fallback for.

This does not affect run-time behaviour as it is the order in the DTB that
determines which compatibility string is used.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/host/pcie-rcar.c

index 62700d1896f4b885517cab4533b5e4c2c1a6db47..85971bc276c634df14a0bcd98202c088b93ff40d 100644 (file)
@@ -1071,12 +1071,12 @@ static int rcar_pcie_parse_map_dma_ranges(struct rcar_pcie *pcie,
 
 static const struct of_device_id rcar_pcie_of_match[] = {
        { .compatible = "renesas,pcie-r8a7779", .data = rcar_pcie_hw_init_h1 },
-       { .compatible = "renesas,pcie-rcar-gen2",
-         .data = rcar_pcie_hw_init_gen2 },
        { .compatible = "renesas,pcie-r8a7790",
          .data = rcar_pcie_hw_init_gen2 },
        { .compatible = "renesas,pcie-r8a7791",
          .data = rcar_pcie_hw_init_gen2 },
+       { .compatible = "renesas,pcie-rcar-gen2",
+         .data = rcar_pcie_hw_init_gen2 },
        { .compatible = "renesas,pcie-r8a7795", .data = rcar_pcie_hw_init },
        {},
 };