return rc;
 }
 
+static int
+ef4_ethtool_get_rxfh_fields(struct net_device *net_dev,
+                           struct ethtool_rxfh_fields *info)
+{
+       struct ef4_nic *efx = netdev_priv(net_dev);
+       unsigned int min_revision = 0;
+
+       info->data = 0;
+       switch (info->flow_type) {
+       case TCP_V4_FLOW:
+               info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
+               fallthrough;
+       case UDP_V4_FLOW:
+       case SCTP_V4_FLOW:
+       case AH_ESP_V4_FLOW:
+       case IPV4_FLOW:
+               info->data |= RXH_IP_SRC | RXH_IP_DST;
+               min_revision = EF4_REV_FALCON_B0;
+               break;
+       default:
+               break;
+       }
+       if (ef4_nic_rev(efx) < min_revision)
+               info->data = 0;
+       return 0;
+}
+
 static int
 ef4_ethtool_get_rxnfc(struct net_device *net_dev,
                      struct ethtool_rxnfc *info, u32 *rule_locs)
                info->data = efx->n_rx_channels;
                return 0;
 
-       case ETHTOOL_GRXFH: {
-               unsigned min_revision = 0;
-
-               info->data = 0;
-               switch (info->flow_type) {
-               case TCP_V4_FLOW:
-                       info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
-                       fallthrough;
-               case UDP_V4_FLOW:
-               case SCTP_V4_FLOW:
-               case AH_ESP_V4_FLOW:
-               case IPV4_FLOW:
-                       info->data |= RXH_IP_SRC | RXH_IP_DST;
-                       min_revision = EF4_REV_FALCON_B0;
-                       break;
-               default:
-                       break;
-               }
-               if (ef4_nic_rev(efx) < min_revision)
-                       info->data = 0;
-               return 0;
-       }
-
        case ETHTOOL_GRXCLSRLCNT:
                info->data = ef4_filter_get_rx_id_limit(efx);
                if (info->data == 0)
        .get_rxfh_indir_size    = ef4_ethtool_get_rxfh_indir_size,
        .get_rxfh               = ef4_ethtool_get_rxfh,
        .set_rxfh               = ef4_ethtool_set_rxfh,
+       .get_rxfh_fields        = ef4_ethtool_get_rxfh_fields,
        .get_module_info        = ef4_ethtool_get_module_info,
        .get_module_eeprom      = ef4_ethtool_get_module_eeprom,
        .get_link_ksettings     = ef4_ethtool_get_link_ksettings,