summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHrushikesh Salunke <h-salunke@ti.com>2025-06-27 11:25:46 +0530
committerTom Rini <trini@konsulko.com>2025-07-08 16:19:31 -0600
commit61a3e1b043068abc26fa2c72ac4d420c61dc1cd5 (patch)
treef0659687703c9469baa1cb167dcf115c70269229
parent537dc703d7dd2ac1a50e87a8b6ade04f17a9bcf6 (diff)
pci_endpoint: pci_cdns_ti_ep: Fix the include path for header file
The commit under fixes tag includes "pcie-cadence.h" using angle brackets. Since the header file is not in standard include path change it to double quotes to ensure proper inclusion and avoid build issues, especially on older compilers. Fixes: a4a0edc6046 ("pci_endpoint: Add TI K3 Cadence PCIe Endpoint Controller driver") Signed-off-by: Hrushikesh Salunke <h-salunke@ti.com> Reviewed-by: Bryan Brattlof <bb@ti.com>
-rw-r--r--drivers/pci_endpoint/pcie_cdns_ti_ep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci_endpoint/pcie_cdns_ti_ep.c b/drivers/pci_endpoint/pcie_cdns_ti_ep.c
index 59c17d0f1e4..661b6ba5b55 100644
--- a/drivers/pci_endpoint/pcie_cdns_ti_ep.c
+++ b/drivers/pci_endpoint/pcie_cdns_ti_ep.c
@@ -19,9 +19,10 @@
#include <power-domain.h>
#include <regmap.h>
#include <syscon.h>
-#include <pcie-cadence.h>
#include <pci_ep.h>
+#include "pcie-cadence.h"
+
#define PCIE_USER_CMD_STATUS_REG_OFFSET 0x4
#define LINK_TRAINING_ENABLE BIT(0)