forked from Minki/linux
crypto: cavium/nitrox - Fix an error handling path in 'nitrox_probe()'
'err' is known to be 0 at this point. If 'kzalloc()' fails, returns -ENOMEM instead of 0 which means success. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
b7d65fe181
commit
32e67b9af0
@ -513,8 +513,10 @@ static int nitrox_probe(struct pci_dev *pdev,
|
||||
pci_set_master(pdev);
|
||||
|
||||
ndev = kzalloc(sizeof(*ndev), GFP_KERNEL);
|
||||
if (!ndev)
|
||||
if (!ndev) {
|
||||
err = -ENOMEM;
|
||||
goto ndev_fail;
|
||||
}
|
||||
|
||||
pci_set_drvdata(pdev, ndev);
|
||||
ndev->pdev = pdev;
|
||||
|
Loading…
Reference in New Issue
Block a user