mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
ar71xx: ag71xx: fix get_port_link callback
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30841 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -888,9 +888,15 @@ ar7240_get_port_link(struct switch_dev *dev, int port,
|
||||
return -EINVAL;
|
||||
|
||||
status = ar7240sw_reg_read(mii, AR7240_REG_PORT_STATUS(port));
|
||||
|
||||
link->link = !!(status & AR7240_PORT_STATUS_LINK_UP);
|
||||
link->aneg = !!(status & AR7240_PORT_STATUS_LINK_AUTO);
|
||||
if (link->aneg) {
|
||||
link->link = !!(status & AR7240_PORT_STATUS_LINK_UP);
|
||||
if (!link->link)
|
||||
return 0;
|
||||
} else {
|
||||
link->link = true;
|
||||
}
|
||||
|
||||
link->duplex = !!(status & AR7240_PORT_STATUS_DUPLEX);
|
||||
link->tx_flow = !!(status & AR7240_PORT_STATUS_TXFLOW);
|
||||
link->rx_flow = !!(status & AR7240_PORT_STATUS_RXFLOW);
|
||||
|
||||
Reference in New Issue
Block a user