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 <stephen@networkplumber.org>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
Stephen Hemminger 2019-02-26 13:34:22 -08:00 committed by Ferruh Yigit
parent 85016c7735
commit b5af9abaa7

View File

@ -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;
}