summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-07-17 19:15:21 -0600
committerTom Rini <[email protected]>2025-08-11 15:00:23 -0600
commit5bad0bc4f7beeba8e972005fd0901cf368315815 (patch)
tree4de63c5c55df4b8ae817abfc46a9c5a2452405c7
parent92c54936feba11667ce18656f02791069876731e (diff)
pci: Add missing <linux/sizes.h> to pcie_iproc.c
This driver references the SZ_ macros while relying on an indirection inclusion of <linux/sizes.h>. Add the missing include directly. Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--drivers/pci/pcie_iproc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/pcie_iproc.c b/drivers/pci/pcie_iproc.c
index 360ef1b011f..a6ed0189178 100644
--- a/drivers/pci/pcie_iproc.c
+++ b/drivers/pci/pcie_iproc.c
@@ -13,6 +13,7 @@
#include <dm/device_compat.h>
#include <linux/delay.h>
#include <linux/log2.h>
+#include <linux/sizes.h>
#define EP_PERST_SOURCE_SELECT_SHIFT 2
#define EP_PERST_SOURCE_SELECT BIT(EP_PERST_SOURCE_SELECT_SHIFT)