All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] PCI: qcom: Fix compile error
@ 2023-11-28  4:20 ` Vignesh Raman
  0 siblings, 0 replies; 27+ messages in thread
From: Vignesh Raman @ 2023-11-28  4:20 UTC (permalink / raw)
  To: intel-gfx; +Cc: linux-pci, helen.koike, daniels, dri-devel, linux-kernel

Commit a2458d8f618a ("PCI/ASPM: pci_enable_link_state: Add argument
to acquire bus lock") has added an argument to acquire bus lock
in pci_enable_link_state, but qcom_pcie_enable_aspm calls it
without this argument, resulting in below build error.

drivers/pci/controller/dwc/pcie-qcom.c:973:9: error: too few arguments to function 'pci_enable_link_state'

This commit fixes the compilation error by passing the sem argument
to pci_enable_link_state in the qcom_pcie_enable_aspm function.

Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
---
 drivers/pci/controller/dwc/pcie-qcom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/controller/dwc/pcie-qcom.c b/drivers/pci/controller/dwc/pcie-qcom.c
index 6902e97719d1..e846e3531d8e 100644
--- a/drivers/pci/controller/dwc/pcie-qcom.c
+++ b/drivers/pci/controller/dwc/pcie-qcom.c
@@ -970,7 +970,7 @@ static int qcom_pcie_enable_aspm(struct pci_dev *pdev, void *userdata)
 {
 	/* Downstream devices need to be in D0 state before enabling PCI PM substates */
 	pci_set_power_state(pdev, PCI_D0);
-	pci_enable_link_state(pdev, PCIE_LINK_STATE_ALL);
+	pci_enable_link_state(pdev, PCIE_LINK_STATE_ALL, false);
 
 	return 0;
 }
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2023-11-29 13:57 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-28  4:20 [Intel-gfx] [PATCH] PCI: qcom: Fix compile error Vignesh Raman
2023-11-28  4:20 ` Vignesh Raman
2023-11-28  4:20 ` Vignesh Raman
2023-11-28  5:14 ` [Intel-gfx] " Manivannan Sadhasivam
2023-11-28  5:14   ` Manivannan Sadhasivam
2023-11-28  5:14   ` Manivannan Sadhasivam
2023-11-28  6:14   ` [Intel-gfx] " Vignesh Raman
2023-11-28  6:14     ` Vignesh Raman
2023-11-28  6:14     ` Vignesh Raman
2023-11-28  6:51     ` [Intel-gfx] " Manivannan Sadhasivam
2023-11-28  6:51       ` Manivannan Sadhasivam
2023-11-28  6:51       ` Manivannan Sadhasivam
2023-11-28  7:47       ` [Intel-gfx] " Vignesh Raman
2023-11-28  7:47         ` Vignesh Raman
2023-11-28  7:47         ` Vignesh Raman
2023-11-28 13:03         ` [Intel-gfx] " Jani Nikula
2023-11-28 13:03           ` Jani Nikula
2023-11-29 13:57           ` [Intel-gfx] " Vignesh Raman
2023-11-29 13:57             ` Vignesh Raman
2023-11-28 10:39       ` [Intel-gfx] " Jani Nikula
2023-11-28 10:39         ` Jani Nikula
2023-11-28 10:45         ` [Intel-gfx] " Manivannan Sadhasivam
2023-11-28 10:45           ` Manivannan Sadhasivam
2023-11-28 10:45           ` Manivannan Sadhasivam
2023-11-29  2:08 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
2023-11-29  2:21 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-11-29  9:20 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.