aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files/drivers
diff options
context:
space:
mode:
authorMathias Kresin <dev@kresin.me>2017-08-31 07:52:00 +0200
committerMathias Kresin <dev@kresin.me>2017-09-08 21:52:38 +0200
commit096dff8fcdf4eeb0d94ea335b95a23b30f5d5f3d (patch)
treed08118b5c9a8c5e5afa862fdff40c5a804c143b6 /target/linux/generic/files/drivers
parent47be42c3476ee8b96f87688dc8f6571191e926ec (diff)
downloadupstream-096dff8fcdf4eeb0d94ea335b95a23b30f5d5f3d.tar.gz
upstream-096dff8fcdf4eeb0d94ea335b95a23b30f5d5f3d.tar.bz2
upstream-096dff8fcdf4eeb0d94ea335b95a23b30f5d5f3d.zip
kernel: rtl8306: fix port link status
In case the link changes from down to up, the register is only updated on read. If the link failed/was down, this bit will be 0 until after reading this bit again. Fixes a reported link down by swconfig alebit the link is up (query for the link again will show the correct link status) Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/generic/files/drivers')
-rw-r--r--target/linux/generic/files/drivers/net/phy/rtl8306.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/rtl8306.c b/target/linux/generic/files/drivers/net/phy/rtl8306.c
index 7c70109e63..7bbac40617 100644
--- a/target/linux/generic/files/drivers/net/phy/rtl8306.c
+++ b/target/linux/generic/files/drivers/net/phy/rtl8306.c
@@ -592,8 +592,12 @@ rtl_get_port_link(struct switch_dev *dev, int port, struct switch_port_link *lin
if (port >= RTL8306_NUM_PORTS)
return -EINVAL;
+ /* in case the link changes from down to up, the register is only updated on read */
link->link = rtl_get(dev, RTL_PORT_REG(port, LINK));
if (!link->link)
+ link->link = rtl_get(dev, RTL_PORT_REG(port, LINK));
+
+ if (!link->link)
return 0;
link->duplex = rtl_get(dev, RTL_PORT_REG(port, DUPLEX));