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 коммит произвёл David S. Miller
Родитель 87a7c4b3c3
Коммит 7cbe543cae
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

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