return NETDEV_TX_OK;
        }
 
-       if ((len < ETH_MIN_PACKET_SIZE) &&
+       if (len < ETH_MIN_PACKET_SIZE &&
            ((skb_end_pointer(skb) - skb->data) >= ETH_MIN_PACKET_SIZE)) {
                /* pad the packet out to minimum size */
                padlen = ETH_MIN_PACKET_SIZE - len;
        rcu_read_lock();
        for_each_netdev_rcu(current->nsproxy->net_ns, dev) {
                /* Only consider netdevs that are visornic, and are open */
-               if ((dev->netdev_ops != &visornic_dev_ops) ||
+               if (dev->netdev_ops != &visornic_dev_ops ||
                    (!netif_queue_stopped(dev)))
                        continue;
 
                        /* only call queue wake if we stopped it */
                        netdev = ((struct sk_buff *)cmdrsp->net.buf)->dev;
                        /* ASSERT netdev == vnicinfo->netdev; */
-                       if ((netdev == devdata->netdev) &&
+                       if (netdev == devdata->netdev &&
                            netif_queue_stopped(netdev)) {
                                /* check if we have crossed the lower watermark
                                 * for netif_wake_queue()