]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: fsl-mc: Remove non-DM_ETH code
authorTom Rini <trini@konsulko.com>
Sun, 27 Nov 2022 15:25:13 +0000 (10:25 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 7 Dec 2022 21:04:17 +0000 (16:04 -0500)
As DM_ETH is required for all network drivers, it's now safe to
remove the non-DM_ETH support code.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/net/fsl-mc/mc.c

index 69da465eaabcac3f0d6e89de0371ab6e1ebacac5..6b36860187caf407d998797b8c990df1392ec7d8 100644 (file)
@@ -165,21 +165,12 @@ enum mc_fixup_type {
 };
 
 static int mc_fixup_mac_addr(void *blob, int nodeoffset,
-#ifdef CONFIG_DM_ETH
                             const char *propname, struct udevice *eth_dev,
-#else
-                            const char *propname, struct eth_device *eth_dev,
-#endif
                             enum mc_fixup_type type)
 {
-#ifdef CONFIG_DM_ETH
        struct eth_pdata *plat = dev_get_plat(eth_dev);
        unsigned char *enetaddr = plat->enetaddr;
        int eth_index = dev_seq(eth_dev);
-#else
-       unsigned char *enetaddr = eth_dev->enetaddr;
-       int eth_index = eth_dev->index;
-#endif
        int err = 0, len = 0, size, i;
        unsigned char env_enetaddr[ARP_HLEN];
        unsigned int enetaddr_32[ARP_HLEN];
@@ -252,11 +243,7 @@ const char *dpl_get_connection_endpoint(void *blob, char *endpoint)
 }
 
 static int mc_fixup_dpl_mac_addr(void *blob, int dpmac_id,
-#ifdef CONFIG_DM_ETH
                                 struct udevice *eth_dev)
-#else
-                                struct eth_device *eth_dev)
-#endif
 {
        int objoff = fdt_path_offset(blob, "/objects");
        int dpmacoff = -1, dpnioff = -1;
@@ -355,11 +342,7 @@ void fdt_fsl_mc_fixup_iommu_map_entry(void *blob)
 }
 
 static int mc_fixup_dpc_mac_addr(void *blob, int dpmac_id,
-#ifdef CONFIG_DM_ETH
                                 struct udevice *eth_dev)
-#else
-                                struct eth_device *eth_dev)
-#endif
 {
        int nodeoffset = fdt_path_offset(blob, "/board_info/ports"), noff;
        int err = 0;
@@ -402,12 +385,8 @@ static int mc_fixup_dpc_mac_addr(void *blob, int dpmac_id,
 static int mc_fixup_mac_addrs(void *blob, enum mc_fixup_type type)
 {
        int i, err = 0, ret = 0;
-#ifdef CONFIG_DM_ETH
 #define ETH_NAME_LEN 20
        struct udevice *eth_dev;
-#else
-       struct eth_device *eth_dev;
-#endif
        char ethname[ETH_NAME_LEN];
 
        for (i = WRIOP1_DPMAC1; i < NUM_WRIOP_PORTS; i++) {