pci_endpoint: pci_cdns_ti_ep: Fix the include path for header file
authorHrushikesh Salunke <h-salunke@ti.com>
Fri, 27 Jun 2025 05:55:46 +0000 (11:25 +0530)
committerTom Rini <trini@konsulko.com>
Tue, 8 Jul 2025 22:19:31 +0000 (16:19 -0600)
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>
drivers/pci_endpoint/pcie_cdns_ti_ep.c

index 59c17d0..661b6ba 100644 (file)
 #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)