e1000e: check return of pci_save_state
Check return of pci_save_state and error out accordingly. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
1605927fce
Коммит
438b365a27
|
@ -4802,7 +4802,10 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
|
|||
goto err_pci_reg;
|
||||
|
||||
pci_set_master(pdev);
|
||||
pci_save_state(pdev);
|
||||
/* PCI config space info */
|
||||
err = pci_save_state(pdev);
|
||||
if (err)
|
||||
goto err_alloc_etherdev;
|
||||
|
||||
err = -ENOMEM;
|
||||
netdev = alloc_etherdev(sizeof(struct e1000_adapter));
|
||||
|
|
Загрузка…
Ссылка в новой задаче