]> git.baikalelectronics.ru Git - uboot.git/commitdiff
driver: net: ti: keystone_net: Change priv member type
authorMarek Behún <marek.behun@nic.cz>
Mon, 11 Apr 2022 19:20:55 +0000 (21:20 +0200)
committerRamon Fried <ramon@neureality.ai>
Wed, 13 Apr 2022 12:12:03 +0000 (15:12 +0300)
Change type of private struct member mdio_base from void * to
phys_addr_t. This allows us to drop 2 casts.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
drivers/net/ti/keystone_net.c

index 3c1f61608611e39d3470c9e25be06c1c136ff5e6..fbec69f571751435b52d7cb70329fc3b2c80e0bd 100644 (file)
@@ -92,7 +92,7 @@ struct ks2_eth_priv {
        phy_interface_t                 phy_if;
        ofnode                          phy_ofnode;
        int                             sgmii_link_type;
-       void *                          mdio_base;
+       phys_addr_t                     mdio_base;
        struct rx_buff_desc             net_rx_buffs;
        struct pktdma_cfg               *netcp_pktdma;
        void                            *hd;
@@ -569,7 +569,7 @@ static int ks2_eth_probe(struct udevice *dev)
                 * to re-use the same
                 */
                mdio_bus = cpsw_mdio_init("ethernet-mdio",
-                                         (u32)priv->mdio_base,
+                                         priv->mdio_base,
                                          EMAC_MDIO_CLOCK_FREQ,
                                          EMAC_MDIO_BUS_FREQ);
                if (!mdio_bus) {
@@ -701,7 +701,7 @@ static int ks2_eth_parse_slave_interface(ofnode netcp, ofnode slave,
                        pr_err("mdio dt not found\n");
                        return -ENODEV;
                }
-               priv->mdio_base = (void *)ofnode_get_addr(mdio);
+               priv->mdio_base = ofnode_get_addr(mdio);
        }
 
        if (priv->link_type == LINK_TYPE_SGMII_MAC_TO_PHY_MODE) {