diff options
author | Arjun Vynipadath <arjun@chelsio.com> | 2019-03-01 13:37:01 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-02 10:21:06 +0300 |
commit | 57d37aea0e2e0a8330ebf4f41150a641a8ccd869 (patch) | |
tree | 806672f83611d79dbd78787a412397d742c953d4 /drivers/net/ethernet/chelsio/cxgb4vf | |
parent | 0960004bebdb803ec286ddfea703a9ab7bf5ab20 (diff) | |
download | linux-57d37aea0e2e0a8330ebf4f41150a641a8ccd869.tar.xz |
cxgb4vf: Call netif_carrier_off properly in pci_probe
netif_carrier_off() should be called only after register_netdev().
Signed-off-by: Arjun Vynipadath <arjun@chelsio.com>
Signed-off-by: Vishal Kulkarni <vishal@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb4vf')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c index 62fd1250ff7e..adc4d481815b 100644 --- a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c +++ b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c @@ -3136,7 +3136,6 @@ static int cxgb4vf_pci_probe(struct pci_dev *pdev, * it. */ pi->xact_addr_filt = -1; - netif_carrier_off(netdev); netdev->irq = pdev->irq; netdev->hw_features = NETIF_F_SG | TSO_FLAGS | NETIF_F_GRO | @@ -3259,6 +3258,7 @@ static int cxgb4vf_pci_probe(struct pci_dev *pdev, continue; } + netif_carrier_off(netdev); set_bit(pidx, &adapter->registered_device_map); } if (adapter->registered_device_map == 0) { |