mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
[PATCH] enp2611: disable/enable SERDES carrier on interface down/up
Disable/enable the SERDES carrier when an interface is administratively downed/upped. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
c6e429bdd6
commit
cffbfcaf00
@ -175,10 +175,15 @@ static void enp2611_set_port_admin_status(int port, int up)
|
||||
{
|
||||
if (up) {
|
||||
caleb_enable_rx(port);
|
||||
|
||||
pm3386_set_carrier(port, 1);
|
||||
pm3386_enable_rx(port);
|
||||
} else {
|
||||
caleb_disable_tx(port);
|
||||
pm3386_disable_tx(port);
|
||||
/* @@@ Flush out pending packets. */
|
||||
pm3386_set_carrier(port, 0);
|
||||
|
||||
pm3386_disable_rx(port);
|
||||
caleb_disable_rx(port);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user