ehea: simplify conditional
authorNicolas Kaiser <[email protected]>
Thu, 7 Oct 2010 13:14:50 +0000 (13:14 +0000)
committerDavid S. Miller <[email protected]>
Sat, 9 Oct 2010 16:22:53 +0000 (09:22 -0700)
Simplify: ((a && b) || (!a && !b)) => (a == b)

Signed-off-by: Nicolas Kaiser <[email protected]>
Acked-by: Breno Leitao <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ehea/ehea_main.c

index 15401af30108bfc26ef4b307f2d6b85acb917055..6932578816d35b6a4fc407f1a36055ca64ba5ed7 100644 (file)
@@ -1918,7 +1918,7 @@ static void ehea_promiscuous(struct net_device *dev, int enable)
        struct hcp_ehea_port_cb7 *cb7;
        u64 hret;
 
-       if ((enable && port->promisc) || (!enable && !port->promisc))
+       if (enable == port->promisc)
                return;
 
        cb7 = (void *)get_zeroed_page(GFP_ATOMIC);