]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: mcfmii: Remove non-DM_ETH code
authorTom Rini <trini@konsulko.com>
Sun, 27 Nov 2022 15:25:16 +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/mcfmii.c

index e2c8f41876e75b6e883a6666529ac2d15c4868ce..48dd558405c5d5ab5883b7a162b79f7f0c6a6468 100644 (file)
@@ -85,11 +85,7 @@ void mii_reset(fec_info_t *info)
 /* send command to phy using mii, wait for result */
 uint mii_send(uint mii_cmd)
 {
-#ifdef CONFIG_DM_ETH
        struct udevice *dev;
-#else
-       struct eth_device *dev;
-#endif
        fec_info_t *info;
        volatile FEC_T *ep;
        uint mii_reply;
@@ -97,11 +93,7 @@ uint mii_send(uint mii_cmd)
 
        /* retrieve from register structure */
        dev = eth_get_dev();
-#ifdef CONFIG_DM_ETH
        info = dev_get_priv(dev);
-#else
-       info = dev->priv;
-#endif
 
        ep = (FEC_T *) info->miibase;
 
@@ -202,11 +194,7 @@ int mii_discover_phy(fec_info_t *info)
 
 __weak void mii_init(void)
 {
-#ifdef CONFIG_DM_ETH
        struct udevice *dev;
-#else
-       struct eth_device *dev;
-#endif
        fec_info_t *info;
        volatile FEC_T *fecp;
        int miispd = 0, i = 0;
@@ -215,11 +203,7 @@ __weak void mii_init(void)
 
        /* retrieve from register structure */
        dev = eth_get_dev();
-#ifdef CONFIG_DM_ETH
        info = dev_get_priv(dev);
-#else
-       info = dev->priv;
-#endif
 
        fecp = (FEC_T *) info->miibase;