From: Stephen Hemminger Date: Tue, 26 Feb 2019 21:34:22 +0000 (-0800) Subject: eventdev: use same log macro for all unsupported calls X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b5af9abaa74fc610726c631b58312cc8d77801df;p=dpdk.git eventdev: use same log macro for all unsupported calls The driver already has RTE_EDEV_XXX log macros so use them in two more places. Signed-off-by: Stephen Hemminger Reviewed-by: Ferruh Yigit --- diff --git a/lib/librte_eventdev/rte_eventdev.c b/lib/librte_eventdev/rte_eventdev.c index ebaf3087d9..4d4f079195 100644 --- a/lib/librte_eventdev/rte_eventdev.c +++ b/lib/librte_eventdev/rte_eventdev.c @@ -892,7 +892,7 @@ rte_event_port_link(uint8_t dev_id, uint8_t port_id, dev = &rte_eventdevs[dev_id]; if (*dev->dev_ops->port_link == NULL) { - RTE_PMD_DEBUG_TRACE("Function not supported\n"); + RTE_EDEV_LOG_ERR("Function not supported\n"); rte_errno = -ENOTSUP; return 0; } @@ -951,7 +951,7 @@ rte_event_port_unlink(uint8_t dev_id, uint8_t port_id, dev = &rte_eventdevs[dev_id]; if (*dev->dev_ops->port_unlink == NULL) { - RTE_PMD_DEBUG_TRACE("Function not supported\n"); + RTE_EDEV_LOG_ERR("Function not supported"); rte_errno = -ENOTSUP; return 0; }