From: Jiri Pirko Date: Thu, 18 Aug 2011 06:50:37 +0000 (-0700) Subject: forcedeth: call vlan_mode only if hw supports vlans X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9331db4f00cfee8a79d2147ac83723ef436b9759;p=~shefty%2Frdma-dev.git forcedeth: call vlan_mode only if hw supports vlans If hw does not support vlans, dont call nv_vlan_mode because it has no point. I believe that this should fix issues on older non-vlan supportive chips (like Ingo has). Reported-ty: Ingo Molnar Signed-off-by: Jiri Pirko Signed-off-by: David S. Miller --- diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index e55df308a3a..6d5fbd4d425 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c @@ -5615,7 +5615,8 @@ static int __devinit nv_probe(struct pci_dev *pci_dev, const struct pci_device_i goto out_error; } - nv_vlan_mode(dev, dev->features); + if (id->driver_data & DEV_HAS_VLAN) + nv_vlan_mode(dev, dev->features); netif_carrier_off(dev);