aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2017-04-02 14:30:06 -0700
committerDavid S. Miller <davem@davemloft.net>2017-04-05 06:36:06 -0700
commit1f37b177fd36790be4f281d538a8c9de67013606 (patch)
treea6278dab469d9bea49f07a686b22429dee623331 /drivers/net/phy
parentMerge branch 'bnxt_en-WoL-selftest-XDP_TX-optimize' (diff)
downloadlinux-dev-1f37b177fd36790be4f281d538a8c9de67013606.tar.xz
linux-dev-1f37b177fd36790be4f281d538a8c9de67013606.zip
phy/ethtool: Add missing SPEED_<foo> strings
Add all the currently available SPEED_<foo> strings. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r--drivers/net/phy/phy.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 867c42154087..6811d1ef4ef2 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -50,8 +50,22 @@ static const char *phy_speed_to_str(int speed)
return "1Gbps";
case SPEED_2500:
return "2.5Gbps";
+ case SPEED_5000:
+ return "5Gbps";
case SPEED_10000:
return "10Gbps";
+ case SPEED_20000:
+ return "20Gbps";
+ case SPEED_25000:
+ return "25Gbps";
+ case SPEED_40000:
+ return "40Gbps";
+ case SPEED_50000:
+ return "50Gbps";
+ case SPEED_56000:
+ return "56Gbps";
+ case SPEED_100000:
+ return "100Gbps";
case SPEED_UNKNOWN:
return "Unknown";
default: