From: Hrushikesh Salunke Date: Fri, 27 Jun 2025 05:55:46 +0000 (+0530) Subject: pci_endpoint: pci_cdns_ti_ep: Fix the include path for header file X-Git-Tag: v2025.10-rc1~124 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61a3e1b043068abc26fa2c72ac4d420c61dc1cd5;p=thirdparty%2Fu-boot.git 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 Reviewed-by: Bryan Brattlof --- 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 #include #include -#include #include +#include "pcie-cadence.h" + #define PCIE_USER_CMD_STATUS_REG_OFFSET 0x4 #define LINK_TRAINING_ENABLE BIT(0)