From: Hyong Youb Kim Date: Mon, 14 Jan 2019 15:01:22 +0000 (-0800) Subject: net/enic: remove redundant log level check X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9bd48e2d30c82501239c385929aa2d3888d9a70a;p=dpdk.git net/enic: remove redundant log level check Fixes: 8d496995346c ("net/enic: support multicast filtering") Cc: stable@dpdk.org Suggested-by: Ferruh Yigit Signed-off-by: Hyong Youb Kim --- diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c index fbbec2266e..8d14d8ac7d 100644 --- a/drivers/net/enic/enic_ethdev.c +++ b/drivers/net/enic/enic_ethdev.c @@ -647,11 +647,10 @@ static int enicpmd_set_mac_addr(struct rte_eth_dev *eth_dev, static void debug_log_add_del_addr(struct ether_addr *addr, bool add) { char mac_str[ETHER_ADDR_FMT_SIZE]; - if (rte_log_get_level(enicpmd_logtype_init) == RTE_LOG_DEBUG) { - ether_format_addr(mac_str, ETHER_ADDR_FMT_SIZE, addr); - PMD_INIT_LOG(ERR, " %s address %s\n", - add ? "add" : "remove", mac_str); - } + + ether_format_addr(mac_str, ETHER_ADDR_FMT_SIZE, addr); + PMD_INIT_LOG(DEBUG, " %s address %s\n", + add ? "add" : "remove", mac_str); } static int enicpmd_set_mc_addr_list(struct rte_eth_dev *eth_dev,