ethdev: fix missing parenthesis in mac check

Fix check introduced in commit 4bdefaade6 (VMDQ enhancements).

Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
Pawel Wodkowski 2015-01-09 16:05:25 +01:00 committed by Thomas Monjalon
parent 2fc8d6daa4
commit 8d62edecaa

View File

@ -814,7 +814,7 @@ rte_eth_dev_config_restore(uint8_t port_id)
/* add address to the hardware */
if (*dev->dev_ops->mac_addr_add &&
dev->data->mac_pool_sel[i] & (1ULL << pool))
(dev->data->mac_pool_sel[i] & (1ULL << pool)))
(*dev->dev_ops->mac_addr_add)(dev, &addr, i, pool);
else {
PMD_DEBUG_TRACE("port %d: MAC address array not supported\n",