Commit d2d54097 authored by Michal Wajdeczko's avatar Michal Wajdeczko
Browse files

drm/xe/pf: Remove inlined #ifdef CONFIG_PCI_IOV



We can remove #ifdef CONFIG_PCI_IOV in .c files if we provide
dummy replacement of the xe_pci_sriov_configure() function.

Suggested-by: default avatarJani Nikula <jani.nikula@linux.intel.com>
Signed-off-by: default avatarMichal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: default avatarFrancois Dugast <francois.dugast@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240627104305.1477-1-michal.wajdeczko@intel.com
parent eb523ec3
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -748,10 +748,8 @@ static void xe_pci_remove(struct pci_dev *pdev)
	if (!xe) /* driver load aborted, nothing to cleanup */
		return;

#ifdef CONFIG_PCI_IOV
	if (IS_SRIOV_PF(xe))
		xe_pci_sriov_configure(pdev, 0);
#endif

	xe_device_remove(xe);
	xe_pm_runtime_fini(xe);
@@ -1009,9 +1007,7 @@ static struct pci_driver xe_pci_driver = {
	.probe = xe_pci_probe,
	.remove = xe_pci_remove,
	.shutdown = xe_pci_shutdown,
#ifdef CONFIG_PCI_IOV
	.sriov_configure = xe_pci_sriov_configure,
#endif
#ifdef CONFIG_PM_SLEEP
	.driver.pm = &xe_pm_ops,
#endif
+7 −0
Original line number Diff line number Diff line
@@ -8,6 +8,13 @@

struct pci_dev;

#ifdef CONFIG_PCI_IOV
int xe_pci_sriov_configure(struct pci_dev *pdev, int num_vfs);
#else
static inline int xe_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
{
	return 0;
}
#endif

#endif