enic: fix location of vnic dev unregister in enic_probe cleanup code
The vnic_dev_unregister is erroneously under CONFIG_PCI_IOV. This patch moves it out of CONFIG_PCI_IOV Signed-off-by: Roopa Prabhu <roprabhu@cisco.com> Signed-off-by: Christian Benvenuti <benve@cisco.com> Signed-off-by: Sujith Sankar <ssujith@cisco.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ca2b721de2
commit
35d87e3325
1 changed files with 1 additions and 1 deletions
|
@ -2531,8 +2531,8 @@ static int __devinit enic_probe(struct pci_dev *pdev,
|
|||
enic->priv_flags &= ~ENIC_SRIOV_ENABLED;
|
||||
}
|
||||
err_out_vnic_unregister:
|
||||
vnic_dev_unregister(enic->vdev);
|
||||
#endif
|
||||
vnic_dev_unregister(enic->vdev);
|
||||
err_out_iounmap:
|
||||
enic_iounmap(enic);
|
||||
err_out_release_regions:
|
||||
|
|
Loading…
Reference in a new issue