@@ -994,6 +994,7 @@ struct ravb_ops {
bool (*alloc_rx_desc)(struct net_device *ndev, int q);
void (*emac_init)(struct net_device *ndev);
void (*dmac_init)(struct net_device *ndev);
+ bool (*receive)(struct net_device *ndev, int *quota, int q);
};
struct ravb_drv_data {
@@ -607,7 +607,7 @@ static void ravb_rx_csum(struct sk_buff *skb)
}
/* Packet receive function for Ethernet AVB */
-static bool ravb_rx(struct net_device *ndev, int *quota, int q)
+static bool ravb_ex_rx(struct net_device *ndev, int *quota, int q)
{
struct ravb_private *priv = netdev_priv(ndev);
int entry = priv->cur_rx[q] % priv->num_rx_ring[q];
@@ -722,6 +722,14 @@ static bool ravb_rx(struct net_device *ndev, int *quota, int q)
return boguscnt <= 0;
}
+static bool ravb_rx(struct net_device *ndev, int *quota, int q)
+{
+ struct ravb_private *priv = netdev_priv(ndev);
+ const struct ravb_drv_data *info = priv->info;
+
+ return info->ravb_ops->receive(ndev, quota, q);
+}
+
static void ravb_rcv_snd_disable(struct net_device *ndev)
{
/* Disable TX and RX */
@@ -2036,6 +2044,7 @@ static const struct ravb_ops ravb_gen3_ops = {
.alloc_rx_desc = ravb_alloc_rx_desc,
.emac_init = ravb_emac_init_ex,
.dmac_init = ravb_dmac_init_ex,
+ .receive = ravb_ex_rx,
};
static const struct ravb_drv_data ravb_gen3_data = {