Skip to content

Commit

Permalink
ethernet: nvidia: Remove extra parens
Browse files Browse the repository at this point in the history
Remove unnecessary double parenthesis around if statement.

Signed-off-by: David Wood <devel@dtwood.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David Wood authored and David S. Miller committed Sep 2, 2014
1 parent 29fea20 commit d46781b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/nvidia/forcedeth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit d46781b

Please sign in to comment.