common/mlx5: move some getter functions from net driver
[dpdk.git] / drivers / common / cpt / cpt_pmd_logs.h
index 4cbec4e..174326c 100644 (file)
  * This file defines log macros
  */
 
+/*
+ * otx*_cryptodev.h file would define the CPT_LOGTYPE macro for the
+ * platform.
+ */
 #define CPT_PMD_DRV_LOG_RAW(level, fmt, args...) \
-               rte_log(RTE_LOG_ ## level, cpt_logtype, \
+               rte_log(RTE_LOG_ ## level, CPT_LOGTYPE, \
                        "cpt: %s(): " fmt "\n", __func__, ##args)
 
 #define CPT_PMD_INIT_FUNC_TRACE() CPT_PMD_DRV_LOG_RAW(DEBUG, " >>")
 #define CPT_LOG_DP_ERR(fmt, args...) \
        CPT_LOG_DP(ERR, fmt, ## args)
 
-/*
- * cpt_logtype will be used for common logging. This field would be initialized
- * by otx_* driver routines during PCI probe.
- */
-int cpt_logtype;
-
 #endif /* _CPT_PMD_LOGS_H_ */