ethdev: remove redundant parenthesis
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 14 Dec 2017 23:32:19 +0000 (15:32 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 Jan 2018 21:08:15 +0000 (22:08 +0100)
Obvious extra parenthesis do not help readability

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
lib/librte_ether/rte_ethdev.c

index 27b5213..a524af7 100644 (file)
@@ -781,7 +781,7 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
         * Convert between the offloads API to enable PMDs to support
         * only one of them.
         */
-       if ((dev_conf->rxmode.ignore_offload_bitfield == 0)) {
+       if (dev_conf->rxmode.ignore_offload_bitfield == 0) {
                rte_eth_convert_rx_offload_bitfield(
                                &dev_conf->rxmode, &local_conf.rxmode.offloads);
        } else {
@@ -2664,7 +2664,7 @@ rte_eth_dev_uc_hash_table_set(uint16_t port_id, struct ether_addr *addr,
 
        index = get_hash_mac_addr_index(port_id, addr);
        /* Check if it's already there, and do nothing */
-       if ((index >= 0) && (on))
+       if ((index >= 0) && on)
                return 0;
 
        if (index < 0) {