Commit cdf64c803e6cfec72259f7bb2654261584bb80a8

Authored by Stephen Hemminger
Committed by David S. Miller
1 parent 518d020a18

skge: don't mark carrier down at start

The API for network devices has changed so that setting carrier off at
probe is no longer required.  This should fix the IPv6 addrconf issue.

Addresses https://bugzilla.kernel.org/show_bug.cgi?id=29612

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Reported-by: George Billios <gbillios@gmail.com>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 0 additions and 3 deletions Side-by-side Diff

... ... @@ -3856,9 +3856,6 @@
3856 3856 memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port*8, ETH_ALEN);
3857 3857 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
3858 3858  
3859   - /* device is off until link detection */
3860   - netif_carrier_off(dev);
3861   -
3862 3859 return dev;
3863 3860 }
3864 3861