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>
This commit is contained in:
parent
29fea209f8
commit
d46781bc88
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue