Commit e42de262 authored by Ben Hutchings's avatar Ben Hutchings Committed by David S. Miller

sfc: Fix failure paths in efx_probe_port()

Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7db8e8ec
......@@ -761,7 +761,7 @@ static int efx_probe_port(struct efx_nic *efx)
/* Connect up MAC/PHY operations table */
rc = efx->type->probe_port(efx);
if (rc)
goto err;
return rc;
/* Sanity check MAC address */
if (is_valid_ether_addr(efx->mac_address)) {
......@@ -782,7 +782,7 @@ static int efx_probe_port(struct efx_nic *efx)
return 0;
err:
efx_remove_port(efx);
efx->type->remove_port(efx);
return rc;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment