summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorHrushikesh Salunke <h-salunke@ti.com>2025-04-16 17:38:28 +0530
committerTom Rini <trini@konsulko.com>2025-04-24 10:45:49 -0600
commit29602a52903f34653081e6ecbaa4a5ab056409b9 (patch)
tree7c3885407bd19eb4835d30309475fd15bca77074 /drivers
parentc5db8973d7df0573d5e72fa5b9154d3c0856ec3e (diff)
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 <h-salunke@ti.com> Reviewed-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/pcie_cdns_ti.c1
1 files changed, 1 insertions, 0 deletions
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 <linux/io.h>
#include <linux/ioport.h>
#include <linux/log2.h>
+#include <linux/sizes.h>
#include <power-domain.h>
#include <regmap.h>
#include <syscon.h>