void *(*alloc_rx_desc)(struct net_device *ndev, int q);
        bool (*receive)(struct net_device *ndev, int *quota, int q);
        void (*set_rate)(struct net_device *ndev);
-       int (*set_rx_csum_feature)(struct net_device *ndev, netdev_features_t features);
+       int (*set_feature)(struct net_device *ndev, netdev_features_t features);
        void (*dmac_init)(struct net_device *ndev);
        void (*emac_init)(struct net_device *ndev);
        const char (*gstrings_stats)[ETH_GSTRING_LEN];
 
        spin_unlock_irqrestore(&priv->lock, flags);
 }
 
-static int ravb_set_features_rx_csum(struct net_device *ndev,
-                                    netdev_features_t features)
+static int ravb_set_features_rcar(struct net_device *ndev,
+                                 netdev_features_t features)
 {
        netdev_features_t changed = ndev->features ^ features;
 
        struct ravb_private *priv = netdev_priv(ndev);
        const struct ravb_hw_info *info = priv->info;
 
-       return info->set_rx_csum_feature(ndev, features);
+       return info->set_feature(ndev, features);
 }
 
 static const struct net_device_ops ravb_netdev_ops = {
        .alloc_rx_desc = ravb_alloc_rx_desc,
        .receive = ravb_rcar_rx,
        .set_rate = ravb_set_rate,
-       .set_rx_csum_feature = ravb_set_features_rx_csum,
+       .set_feature = ravb_set_features_rcar,
        .dmac_init = ravb_rcar_dmac_init,
        .emac_init = ravb_rcar_emac_init,
        .gstrings_stats = ravb_gstrings_stats,
        .alloc_rx_desc = ravb_alloc_rx_desc,
        .receive = ravb_rcar_rx,
        .set_rate = ravb_set_rate,
-       .set_rx_csum_feature = ravb_set_features_rx_csum,
+       .set_feature = ravb_set_features_rcar,
        .dmac_init = ravb_rcar_dmac_init,
        .emac_init = ravb_rcar_emac_init,
        .gstrings_stats = ravb_gstrings_stats,