From 29602a52903f34653081e6ecbaa4a5ab056409b9 Mon Sep 17 00:00:00 2001 From: Hrushikesh Salunke Date: Wed, 16 Apr 2025 17:38:28 +0530 Subject: [PATCH] pci: pcie_cdns_ti: Include linux/sizes.h header Driver uses macro SZ_4G to configure inbound base address register. The macro is used without including the header file in which it is defined. Fix this. Fixes: 59ad5480098 ("pci: Add TI K3 Cadence PCIe Controller") Signed-off-by: Hrushikesh Salunke Reviewed-by: Siddharth Vadapalli --- drivers/pci/pcie_cdns_ti.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/pcie_cdns_ti.c b/drivers/pci/pcie_cdns_ti.c index 41469a186a3..e5bcc6eb53e 100644 --- a/drivers/pci/pcie_cdns_ti.c +++ b/drivers/pci/pcie_cdns_ti.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include -- 2.39.5