{
        int i;
 
-       if (!client_info->slave) {
+       if (!client_info->slave)
                return;
-       }
 
        for (i = 0; i < RLB_ARP_BURST_SIZE; i++) {
                struct sk_buff *skb;
                client_info = &(bond_info->rx_hashtbl[hash_index]);
                if (client_info->ntt) {
                        rlb_update_client(client_info);
-                       if (bond_info->rlb_update_retry_counter == 0) {
+                       if (bond_info->rlb_update_retry_counter == 0)
                                client_info->ntt = 0;
-                       }
                }
        }
 
                * rx channel
                */
                tx_slave = rlb_choose_channel(skb, bond);
-               if (tx_slave) {
+               if (tx_slave)
                        memcpy(arp->mac_src, tx_slave->dev->dev_addr, ETH_ALEN);
-               }
                pr_debug("Server sent ARP Reply packet\n");
        } else if (arp->op_code == htons(ARPOP_REQUEST)) {
                /* Create an entry in the rx_hashtbl for this client as a
        }
 
        /* update the team's flag only after the whole iteration */
-       if (ntt) {
+       if (ntt)
                bond_info->rx_ntt = 1;
-       }
        _unlock_rx_hashtbl_bh(bond);
 }
 
 
        bond_info->rx_hashtbl_used_head = RLB_NULL_INDEX;
 
-       for (i = 0; i < RLB_HASH_TABLE_SIZE; i++) {
+       for (i = 0; i < RLB_HASH_TABLE_SIZE; i++)
                rlb_init_table_entry(bond_info->rx_hashtbl + i);
-       }
 
        _unlock_rx_hashtbl_bh(bond);
 
        int res;
 
        res = tlb_initialize(bond);
-       if (res) {
+       if (res)
                return res;
-       }
 
        if (rlb_enabled) {
                bond->alb_info.rlb_enabled = 1;