[PATCH] common/idpf: refine header file include
Qi Zhang
qi.z.zhang at intel.com
Tue Apr 25 00:40:05 CEST 2023
Replace #include <filename> with #include "filename" for
local header file.
Signed-off-by: Qi Zhang <qi.z.zhang at intel.com>
---
drivers/common/idpf/idpf_common_device.c | 4 ++--
drivers/common/idpf/idpf_common_device.h | 6 +++---
drivers/common/idpf/idpf_common_rxtx_avx512.c | 4 ++--
drivers/common/idpf/idpf_common_virtchnl.c | 4 ++--
drivers/common/idpf/idpf_common_virtchnl.h | 4 ++--
5 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/common/idpf/idpf_common_device.c b/drivers/common/idpf/idpf_common_device.c
index c5e7bbf66c..98029c9826 100644
--- a/drivers/common/idpf/idpf_common_device.c
+++ b/drivers/common/idpf/idpf_common_device.c
@@ -3,8 +3,8 @@
*/
#include <rte_log.h>
-#include <idpf_common_device.h>
-#include <idpf_common_virtchnl.h>
+#include "idpf_common_device.h"
+#include "idpf_common_virtchnl.h"
static void
idpf_reset_pf(struct idpf_hw *hw)
diff --git a/drivers/common/idpf/idpf_common_device.h b/drivers/common/idpf/idpf_common_device.h
index c2dc2f16b9..08e2517b3e 100644
--- a/drivers/common/idpf/idpf_common_device.h
+++ b/drivers/common/idpf/idpf_common_device.h
@@ -6,9 +6,9 @@
#define _IDPF_COMMON_DEVICE_H_
#include <rte_mbuf_ptype.h>
-#include <base/idpf_prototype.h>
-#include <base/virtchnl2.h>
-#include <idpf_common_logs.h>
+#include "base/idpf_prototype.h"
+#include "base/virtchnl2.h"
+#include "idpf_common_logs.h"
#define IDPF_RSS_KEY_LEN 52
diff --git a/drivers/common/idpf/idpf_common_rxtx_avx512.c b/drivers/common/idpf/idpf_common_rxtx_avx512.c
index ee68e6a1f7..dffb11fcf2 100644
--- a/drivers/common/idpf/idpf_common_rxtx_avx512.c
+++ b/drivers/common/idpf/idpf_common_rxtx_avx512.c
@@ -3,8 +3,8 @@
*/
#include <rte_vect.h>
-#include <idpf_common_device.h>
-#include <idpf_common_rxtx.h>
+#include "idpf_common_device.h"
+#include "idpf_common_rxtx.h"
#ifndef __INTEL_COMPILER
#pragma GCC diagnostic ignored "-Wcast-qual"
diff --git a/drivers/common/idpf/idpf_common_virtchnl.c b/drivers/common/idpf/idpf_common_virtchnl.c
index 9ee7259539..b96cf8fdcc 100644
--- a/drivers/common/idpf/idpf_common_virtchnl.c
+++ b/drivers/common/idpf/idpf_common_virtchnl.c
@@ -2,8 +2,8 @@
* Copyright(c) 2023 Intel Corporation
*/
-#include <idpf_common_virtchnl.h>
-#include <idpf_common_logs.h>
+#include "idpf_common_virtchnl.h"
+#include "idpf_common_logs.h"
static int
idpf_vc_clean(struct idpf_adapter *adapter)
diff --git a/drivers/common/idpf/idpf_common_virtchnl.h b/drivers/common/idpf/idpf_common_virtchnl.h
index d479d93c8e..c45295290e 100644
--- a/drivers/common/idpf/idpf_common_virtchnl.h
+++ b/drivers/common/idpf/idpf_common_virtchnl.h
@@ -5,8 +5,8 @@
#ifndef _IDPF_COMMON_VIRTCHNL_H_
#define _IDPF_COMMON_VIRTCHNL_H_
-#include <idpf_common_device.h>
-#include <idpf_common_rxtx.h>
+#include "idpf_common_device.h"
+#include "idpf_common_rxtx.h"
__rte_internal
int idpf_vc_api_version_check(struct idpf_adapter *adapter);
--
2.31.1
More information about the dev
mailing list