]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
net: ethernet: enetc: name change for clarity from pcs to mdio_device
authorColin Foster <colin.foster@in-advantage.com>
Wed, 29 Dec 2021 05:03:09 +0000 (21:03 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sun, 2 Jan 2022 18:48:47 +0000 (18:48 +0000)
A simple variable update from "pcs" to "mdio_device" for the mdio device
will make things a little cleaner.

Signed-off-by: Colin Foster <colin.foster@in-advantage.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/enetc/enetc_pf.c

index e36d2d2ba03d37ee87e362386d06584c33f4e529..ed16a5ac9ad06f3455a6c65e6e53c0f7e19abe79 100644 (file)
@@ -830,7 +830,7 @@ static int enetc_imdio_create(struct enetc_pf *pf)
        struct device *dev = &pf->si->pdev->dev;
        struct enetc_mdio_priv *mdio_priv;
        struct phylink_pcs *phylink_pcs;
-       struct mdio_device *pcs;
+       struct mdio_device *mdio_device;
        struct mii_bus *bus;
        int err;
 
@@ -854,16 +854,16 @@ static int enetc_imdio_create(struct enetc_pf *pf)
                goto free_mdio_bus;
        }
 
-       pcs = mdio_device_create(bus, 0);
-       if (IS_ERR(pcs)) {
-               err = PTR_ERR(pcs);
-               dev_err(dev, "cannot create pcs (%d)\n", err);
+       mdio_device = mdio_device_create(bus, 0);
+       if (IS_ERR(mdio_device)) {
+               err = PTR_ERR(mdio_device);
+               dev_err(dev, "cannot create mdio device (%d)\n", err);
                goto unregister_mdiobus;
        }
 
-       phylink_pcs = lynx_pcs_create(pcs);
+       phylink_pcs = lynx_pcs_create(mdio_device);
        if (!phylink_pcs) {
-               mdio_device_free(pcs);
+               mdio_device_free(mdio_device);
                err = -ENOMEM;
                dev_err(dev, "cannot create lynx pcs (%d)\n", err);
                goto unregister_mdiobus;