]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: ravb: Drop SoC-specific compatible support
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 26 Jan 2023 20:10:48 +0000 (21:10 +0100)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Thu, 2 Feb 2023 00:49:21 +0000 (01:49 +0100)
The current set of U-Boot upstream R-Car Gen3 DTs all contain generic
"renesas,etheravb-rcar-gen3" compatible strings, drop the SoC specific
compatible string support from U-Boot to reduce size and duplication.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
drivers/net/ravb.c

index c28680565fc934a4244e30c3d0aa837a4dbccdd8..5a835cc06ff20b9bb39162a7bcb91122c3f6aa18 100644 (file)
@@ -693,12 +693,6 @@ int ravb_of_to_plat(struct udevice *dev)
 }
 
 static const struct udevice_id ravb_ids[] = {
-       { .compatible = "renesas,etheravb-r8a7795" },
-       { .compatible = "renesas,etheravb-r8a7796" },
-       { .compatible = "renesas,etheravb-r8a77965" },
-       { .compatible = "renesas,etheravb-r8a77970" },
-       { .compatible = "renesas,etheravb-r8a77990" },
-       { .compatible = "renesas,etheravb-r8a77995" },
        { .compatible = "renesas,etheravb-rcar-gen3" },
        { }
 };