mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-05 20:24:09 +08:00
i40e: Check PCI_IOV config to avoid compile error
The call to i40e_alloc_vfs needs to be wrapped in CONFIG_PCI_IOV because the function itself is wrapped in the same conditional compile block. Change-ID: I663c5f1b85e5cfba0b36da8966f7db1a034f408b Signed-off-by: Greg Rose <gregory.v.rose@intel.com> Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
c0c8a202c9
commit
df805f62d1
@ -8368,6 +8368,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI_IOV
|
||||||
/* prep for VF support */
|
/* prep for VF support */
|
||||||
if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
|
if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
|
||||||
(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
|
(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
|
||||||
@ -8390,6 +8391,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
err);
|
err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_PCI_IOV */
|
||||||
|
|
||||||
pfs_found++;
|
pfs_found++;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user