From: David Wood Date: Mon, 1 Sep 2014 22:31:55 +0000 (-0700) Subject: ethernet: nvidia: Remove extra parens X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d46781bc8803b11d4f9540663ce6369fa0d28c58;p=deliverable%2Flinux.git ethernet: nvidia: Remove extra parens Remove unnecessary double parenthesis around if statement. Signed-off-by: David Wood Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/nvidia/forcedeth.c b/drivers/net/ethernet/nvidia/forcedeth.c index 925b296d8ab8..f39cae620f61 100644 --- a/drivers/net/ethernet/nvidia/forcedeth.c +++ b/drivers/net/ethernet/nvidia/forcedeth.c @@ -1481,7 +1481,7 @@ static int phy_init(struct net_device *dev) } /* phy vendor specific configuration */ - if ((np->phy_oui == PHY_OUI_CICADA)) { + if (np->phy_oui == PHY_OUI_CICADA) { if (init_cicada(dev, np, phyinterface)) { netdev_info(dev, "%s: phy init failed\n", pci_name(np->pci_dev));