sfc: Fix error code in probe
This failure path should return a negative error code but it currently
returns success.
Fixes: 51b35a454e
("sfc: skeleton EF100 PF driver")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
e1b8139142
Коммит
58ed68b592
|
@ -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) {
|
||||
netif_err(efx, probe, efx->net_dev,
|
||||
"Func control window overruns BAR\n");
|
||||
rc = -EIO;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче