@@ -996,6 +996,7 @@ struct ravb_ops {
void (*dmac_init)(struct net_device *ndev);
bool (*receive)(struct net_device *ndev, int *quota, int q);
void (*set_rate)(struct net_device *ndev);
+ int (*set_features)(struct net_device *ndev, netdev_features_t features);
};
struct ravb_drv_data {
@@ -1966,8 +1966,8 @@ static void ravb_set_rx_csum(struct net_device *ndev, bool enable)
spin_unlock_irqrestore(&priv->lock, flags);
}
-static int ravb_set_features(struct net_device *ndev,
- netdev_features_t features)
+static int ravb_set_features_rx_csum(struct net_device *ndev,
+ netdev_features_t features)
{
netdev_features_t changed = ndev->features ^ features;
@@ -1979,6 +1979,15 @@ static int ravb_set_features(struct net_device *ndev,
return 0;
}
+static int ravb_set_features(struct net_device *ndev,
+ netdev_features_t features)
+{
+ struct ravb_private *priv = netdev_priv(ndev);
+ const struct ravb_drv_data *info = priv->info;
+
+ return info->ravb_ops->set_features(ndev, features);
+}
+
static const struct net_device_ops ravb_netdev_ops = {
.ndo_open = ravb_open,
.ndo_stop = ravb_close,
@@ -2047,6 +2056,7 @@ static const struct ravb_ops ravb_gen3_ops = {
.dmac_init = ravb_dmac_init_ex,
.receive = ravb_ex_rx,
.set_rate = ravb_set_rate,
+ .set_features = ravb_set_features_rx_csum,
};
static const struct ravb_drv_data ravb_gen3_data = {