cxgb4: do not display 50Gbps as unsupported speed

50Gbps is a supported speed, Stop reporting it as
unsupported speed.

Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ganesh Goudar 2018-03-10 17:34:50 +05:30 committed by David S. Miller
parent 87a7c4b3c3
commit 7cbe543cae
1 changed files with 3 additions and 0 deletions

View File

@ -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;