Commit 7cbe543c authored by Ganesh Goudar's avatar Ganesh Goudar Committed by David S. Miller

cxgb4: do not display 50Gbps as unsupported speed

50Gbps is a supported speed, Stop reporting it as
unsupported speed.
Signed-off-by: default avatarGanesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 87a7c4b3
......@@ -210,6 +210,9 @@ static void link_report(struct net_device *dev)
case 40000:
s = "40Gbps";
break;
case 50000:
s = "50Gbps";
break;
case 100000:
s = "100Gbps";
break;
......
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