cxgb4: do not display 50Gbps as unsupported speed
authorGanesh Goudar <ganeshgr@chelsio.com>
Sat, 10 Mar 2018 12:04:50 +0000 (17:34 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Mar 2018 15:05:08 +0000 (11:05 -0400)
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>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c

index 1b44652..78f5506 100644 (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;