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
1 changed files with 1 additions and 1 deletions
|
@ -1481,7 +1481,7 @@ static int phy_init(struct net_device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* phy vendor specific configuration */
|
/* phy vendor specific configuration */
|
||||||
if ((np->phy_oui == PHY_OUI_CICADA)) {
|
if (np->phy_oui == PHY_OUI_CICADA) {
|
||||||
if (init_cicada(dev, np, phyinterface)) {
|
if (init_cicada(dev, np, phyinterface)) {
|
||||||
netdev_info(dev, "%s: phy init failed\n",
|
netdev_info(dev, "%s: phy init failed\n",
|
||||||
pci_name(np->pci_dev));
|
pci_name(np->pci_dev));
|
||||||
|
|
Loading…
Add table
Reference in a new issue