priv->tx_skb[q] = NULL;
 }
 
-/* Format skb and descriptor buffer for Ethernet AVB */
-static void ravb_ring_format(struct net_device *ndev, int q)
+static void ravb_rx_ring_format(struct net_device *ndev, int q)
 {
        struct ravb_private *priv = netdev_priv(ndev);
-       unsigned int num_tx_desc = priv->num_tx_desc;
        struct ravb_ex_rx_desc *rx_desc;
-       struct ravb_tx_desc *tx_desc;
-       struct ravb_desc *desc;
        unsigned int rx_ring_size = sizeof(*rx_desc) * priv->num_rx_ring[q];
-       unsigned int tx_ring_size = sizeof(*tx_desc) * priv->num_tx_ring[q] *
-                                   num_tx_desc;
        dma_addr_t dma_addr;
        unsigned int i;
 
-       priv->cur_rx[q] = 0;
-       priv->cur_tx[q] = 0;
-       priv->dirty_rx[q] = 0;
-       priv->dirty_tx[q] = 0;
-
        memset(priv->rx_ring[q], 0, rx_ring_size);
        /* Build RX ring buffer */
        for (i = 0; i < priv->num_rx_ring[q]; i++) {
        rx_desc = &priv->rx_ring[q][i];
        rx_desc->dptr = cpu_to_le32((u32)priv->rx_desc_dma[q]);
        rx_desc->die_dt = DT_LINKFIX; /* type */
+}
+
+/* Format skb and descriptor buffer for Ethernet AVB */
+static void ravb_ring_format(struct net_device *ndev, int q)
+{
+       struct ravb_private *priv = netdev_priv(ndev);
+       const struct ravb_hw_info *info = priv->info;
+       unsigned int num_tx_desc = priv->num_tx_desc;
+       struct ravb_tx_desc *tx_desc;
+       struct ravb_desc *desc;
+       unsigned int tx_ring_size = sizeof(*tx_desc) * priv->num_tx_ring[q] *
+                                   num_tx_desc;
+       unsigned int i;
+
+       priv->cur_rx[q] = 0;
+       priv->cur_tx[q] = 0;
+       priv->dirty_rx[q] = 0;
+       priv->dirty_tx[q] = 0;
+
+       info->rx_ring_format(ndev, q);
 
        memset(priv->tx_ring[q], 0, tx_ring_size);
        /* Build TX ring buffer */
 
 static const struct ravb_hw_info ravb_gen3_hw_info = {
        .rx_ring_free = ravb_rx_ring_free,
+       .rx_ring_format = ravb_rx_ring_format,
        .gstrings_stats = ravb_gstrings_stats,
        .gstrings_size = sizeof(ravb_gstrings_stats),
        .net_hw_features = NETIF_F_RXCSUM,
 
 static const struct ravb_hw_info ravb_gen2_hw_info = {
        .rx_ring_free = ravb_rx_ring_free,
+       .rx_ring_format = ravb_rx_ring_format,
        .gstrings_stats = ravb_gstrings_stats,
        .gstrings_size = sizeof(ravb_gstrings_stats),
        .net_hw_features = NETIF_F_RXCSUM,