aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/nvidia
diff options
context:
space:
mode:
authorDavid Wood <devel@dtwood.uk>2014-09-01 18:31:55 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-02 16:47:25 -0400
commitd46781bc8803b11d4f9540663ce6369fa0d28c58 (patch)
tree30b26cb636b53d112afe503c44ca65d2bbaabf2b /drivers/net/ethernet/nvidia
parent29fea209f8333e2351710c14c19bf5358da63e39 (diff)
ethernet: nvidia: Remove extra parens
Remove unnecessary double parenthesis around if statement. Signed-off-by: David Wood <devel@dtwood.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/nvidia')
-rw-r--r--drivers/net/ethernet/nvidia/forcedeth.c2
1 files changed, 1 insertions, 1 deletions
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)
1481 } 1481 }
1482 1482
1483 /* phy vendor specific configuration */ 1483 /* phy vendor specific configuration */
1484 if ((np->phy_oui == PHY_OUI_CICADA)) { 1484 if (np->phy_oui == PHY_OUI_CICADA) {
1485 if (init_cicada(dev, np, phyinterface)) { 1485 if (init_cicada(dev, np, phyinterface)) {
1486 netdev_info(dev, "%s: phy init failed\n", 1486 netdev_info(dev, "%s: phy init failed\n",
1487 pci_name(np->pci_dev)); 1487 pci_name(np->pci_dev));