f388f1b16a
1. replace RTE_LIBRTE_IGC_DEBUG_RX with RTE_ETHDEV_DEBUG_RX. 2. replace RTE_LIBRTE_IGC_DEBUG_TX with RTE_ETHDEV_DEBUG_TX. 3. merge RTE_LIBRTE_ETHDEV_DEBUG into RTE_ETHDEV_DEBUG_TX Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
16 lines
456 B
C
16 lines
456 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2018 Intel Corporation
|
|
*/
|
|
|
|
#include <rte_ethdev.h>
|
|
#include "e1000_logs.h"
|
|
|
|
RTE_LOG_REGISTER(e1000_logtype_init, pmd.net.e1000.init, NOTICE)
|
|
RTE_LOG_REGISTER(e1000_logtype_driver, pmd.net.e1000.driver, NOTICE)
|
|
#ifdef RTE_ETHDEV_DEBUG_RX
|
|
RTE_LOG_REGISTER(e1000_logtype_rx, pmd.net.e1000.rx, DEBUG)
|
|
#endif
|
|
#ifdef RTE_ETHDEV_DEBUG_TX
|
|
RTE_LOG_REGISTER(e1000_logtype_tx, pmd.net.e1000.tx, DEBUG)
|
|
#endif
|