Commit 58ed68b5 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller

sfc: Fix error code in probe

This failure path should return a negative error code but it currently
returns success.

Fixes: 51b35a45 ("sfc: skeleton EF100 PF driver")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Acked-by: default avatarEdward Cree <ecree@solarflare.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e1b81391
...@@ -490,6 +490,7 @@ static int ef100_pci_probe(struct pci_dev *pci_dev, ...@@ -490,6 +490,7 @@ static int ef100_pci_probe(struct pci_dev *pci_dev,
if (fcw.offset > pci_resource_len(efx->pci_dev, fcw.bar) - ESE_GZ_FCW_LEN) { if (fcw.offset > pci_resource_len(efx->pci_dev, fcw.bar) - ESE_GZ_FCW_LEN) {
netif_err(efx, probe, efx->net_dev, netif_err(efx, probe, efx->net_dev,
"Func control window overruns BAR\n"); "Func control window overruns BAR\n");
rc = -EIO;
goto fail; goto fail;
} }
......
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