aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark O'Donovan <shiftee@posteo.net>2023-07-01 17:06:50 +0000
committerWarner Losh <imp@FreeBSD.org>2023-07-01 17:06:56 +0000
commit99e5ffe1ba4001f4b893d12ab746cb4472b42757 (patch)
treee1a18f722e33f91276f7e8d37e0eaaf71c68d65f
parent134b09369960a84cf698a639f7f20be3e10966b6 (diff)
downloadsrc-99e5ffe1ba4001f4b893d12ab746cb4472b42757.tar.gz
src-99e5ffe1ba4001f4b893d12ab746cb4472b42757.zip
qlnxe: Move sriov includes to qlnx_os.c
SRIOV is being enabled in ecore.h but by then the qlnx_os.h header has been processed and not included the relevant headers Signed-off-by: Mark O'Donovan <shiftee@posteo.net> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/779
-rw-r--r--sys/dev/qlnx/qlnxe/qlnx_os.c6
-rw-r--r--sys/dev/qlnx/qlnxe/qlnx_os.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/qlnx/qlnxe/qlnx_os.c b/sys/dev/qlnx/qlnxe/qlnx_os.c
index bbd4c0fe7e8c..0b5dba75300b 100644
--- a/sys/dev/qlnx/qlnxe/qlnx_os.c
+++ b/sys/dev/qlnx/qlnxe/qlnx_os.c
@@ -68,6 +68,12 @@ __FBSDID("$FreeBSD$");
#include "qlnx_rdma.h"
#endif /* #ifdef QLNX_ENABLE_IWARP */
+#ifdef CONFIG_ECORE_SRIOV
+#include <sys/nv.h>
+#include <sys/iov_schema.h>
+#include <dev/pci/pci_iov.h>
+#endif /* #ifdef CONFIG_ECORE_SRIOV */
+
#include <sys/smp.h>
/*
diff --git a/sys/dev/qlnx/qlnxe/qlnx_os.h b/sys/dev/qlnx/qlnxe/qlnx_os.h
index f7111f5e3f4b..34678d808b5d 100644
--- a/sys/dev/qlnx/qlnxe/qlnx_os.h
+++ b/sys/dev/qlnx/qlnxe/qlnx_os.h
@@ -90,12 +90,6 @@
#include <sys/smp.h>
#include <sys/sched.h>
-#ifdef CONFIG_ECORE_SRIOV
-#include <sys/nv.h>
-#include <sys/iov_schema.h>
-#include <dev/pci/pci_iov.h>
-#endif /* #ifdef CONFIG_ECORE_SRIOV */
-
static __inline int qlnx_ms_to_hz(int ms)
{
int qlnx_hz;