nfp: fix error return code in nfp_pci_probe()
Fix to return error code -EINVAL instead of 0 when num_vfs above limit_vfs, as done elsewhere in this function. Fixes: 0dc786219186 ("nfp: handle SR-IOV already enabled when driver is probing") Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e71494ae68
commit
e58decc9c5
@ -518,6 +518,7 @@ static int nfp_pci_probe(struct pci_dev *pdev,
|
||||
dev_err(&pdev->dev,
|
||||
"Error: %d VFs already enabled, but loaded FW can only support %d\n",
|
||||
pf->num_vfs, pf->limit_vfs);
|
||||
err = -EINVAL;
|
||||
goto err_fw_unload;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user