Commit cbdc666f authored by Kamal Heib's avatar Kamal Heib Committed by Doug Ledford

RDMA/ipoib: Remove check for ETH_SS_TEST

The default action for unlisted tests is "not-supported", so given that
ipoib doesn't support ETH_SS_TEST, there is no need to check for it
in the case statements, just let it get caught by the default: case.

Fixes: e3614bc9 ("IB/ipoib: Add readout of statistics using ethtool")
Signed-off-by: default avatarKamal Heib <kamalheib1@gmail.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent e39afe3d
...@@ -138,7 +138,6 @@ static void ipoib_get_strings(struct net_device __always_unused *dev, ...@@ -138,7 +138,6 @@ static void ipoib_get_strings(struct net_device __always_unused *dev,
p += ETH_GSTRING_LEN; p += ETH_GSTRING_LEN;
} }
break; break;
case ETH_SS_TEST:
default: default:
break; break;
} }
...@@ -149,7 +148,6 @@ static int ipoib_get_sset_count(struct net_device __always_unused *dev, ...@@ -149,7 +148,6 @@ static int ipoib_get_sset_count(struct net_device __always_unused *dev,
switch (sset) { switch (sset) {
case ETH_SS_STATS: case ETH_SS_STATS:
return IPOIB_GLOBAL_STATS_LEN; return IPOIB_GLOBAL_STATS_LEN;
case ETH_SS_TEST:
default: default:
break; 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