OSDN Git Service

dpaa2-eth: Cleanup dead code
authorIoana Radulescu <ruxandra.radulescu@nxp.com>
Mon, 7 Oct 2019 11:38:26 +0000 (14:38 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Oct 2019 14:08:09 +0000 (10:08 -0400)
Remove one function call whose result was not used anywhere.

Signed-off-by: Ioana Radulescu <ruxandra.radulescu@nxp.com>
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c

index 162d7d8..2c5072f 100644 (file)
@@ -2043,7 +2043,6 @@ static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv)
 {
        struct fsl_mc_device *dpcon;
        struct device *dev = priv->net_dev->dev.parent;
-       struct dpcon_attr attrs;
        int err;
 
        err = fsl_mc_object_allocate(to_fsl_mc_device(dev),
@@ -2068,12 +2067,6 @@ static struct fsl_mc_device *setup_dpcon(struct dpaa2_eth_priv *priv)
                goto close;
        }
 
-       err = dpcon_get_attributes(priv->mc_io, 0, dpcon->mc_handle, &attrs);
-       if (err) {
-               dev_err(dev, "dpcon_get_attributes() failed\n");
-               goto close;
-       }
-
        err = dpcon_enable(priv->mc_io, 0, dpcon->mc_handle);
        if (err) {
                dev_err(dev, "dpcon_enable() failed\n");