mirror of https://gitee.com/openkylin/linux.git
dpaa2-eth: Cleanup dead code
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>
This commit is contained in:
parent
3ea7af9e2c
commit
219684a58d
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue