Commit d46781bc authored by David Wood's avatar David Wood Committed by David S. Miller

ethernet: nvidia: Remove extra parens

Remove unnecessary double parenthesis around if statement.
Signed-off-by: default avatarDavid Wood <devel@dtwood.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 29fea209
......@@ -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));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment