Commit 7d28b934 authored by Florian Fainelli's avatar Florian Fainelli Committed by Ben Hutchings

net: bgmac: Start transmit queue in bgmac_open

commit c3897f2a upstream.

The driver does not start the transmit queue in bgmac_open(). If the
queue was stopped prior to closing then re-opening the interface, we
would never be able to wake-up again.

Fixes: dd4544f0 ("bgmac: driver for GBit MAC core on BCMA bus")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
[bwh: Backported to 3.16: adjust context]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 89557831
......@@ -1200,6 +1200,8 @@ static int bgmac_open(struct net_device *net_dev)
netif_carrier_on(net_dev);
netif_start_queue(net_dev);
err_out:
return err;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment